Skip to content

Commit

Permalink
Update streamlit_utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufuyanik1 committed Nov 22, 2023
1 parent 4d92f43 commit 2dfd630
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pdstools/utils/streamlit_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,13 +240,13 @@ def filter_dataframe(
)
else:
user_min = min_col.number_input(
label=f"Min value for {column}",
label=f"Min value for {column} (Min:{_min})",
min_value=_min,
max_value=_max,
value=_min,
)
user_max = max_col.number_input(
label=f"Max value for {column}",
label=f"Max value for {column} (Max:{_max})",
min_value=_min,
max_value=_max,
value=_max,
Expand Down

0 comments on commit 2dfd630

Please sign in to comment.