Skip to content

Commit

Permalink
Remvendo file_path do campo de ordenação
Browse files Browse the repository at this point in the history
  • Loading branch information
camilamaia committed Nov 8, 2024
1 parent b20f47d commit 9cde087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion curadoria_coletiva/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _create_filter_dropdowns(df):
id="sort-dropdown",
options=[
{"label": col.replace("_", " ").capitalize(), "value": col}
for col in df.columns
for col in df.columns if col != "file_path" # remove `file_path`
],
placeholder="Ordenar por",
style={
Expand Down

0 comments on commit 9cde087

Please sign in to comment.