Skip to content

Commit

Permalink
8649bd9 update components for this
Browse files Browse the repository at this point in the history
  • Loading branch information
perfectly-preserved-pie committed Jan 4, 2025
1 parent 8649bd9 commit c6b262e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -1237,9 +1237,9 @@ def create_bathrooms_slider(self):
html.Div([
dcc.RangeSlider(
min=0,
max=self.df['bathrooms'].max(),
max=self.df['total_bathrooms'].max(),
step=1,
value=[0, self.df['bathrooms'].max()],
value=[0, self.df['total_bathrooms'].max()],
id='bathrooms_slider',
updatemode='mouseup',
tooltip={
Expand Down

0 comments on commit c6b262e

Please sign in to comment.