-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjusted styling on filter buttons Adjustments to clickable area on search result items Fixed bug when switching between filter toggles Fixed range numbers getting jumbled values Enabled improved filter functionality
- Loading branch information
Showing
7 changed files
with
124 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
/** | ||
* TODO: Sync these with local state | ||
*/ | ||
|
||
export const DEFAULT_ALPHA_PROPS = { | ||
enabled: false, | ||
sortDescending: true, | ||
sortDescending: false, | ||
}; | ||
|
||
export const DEFAULT_NUM_PROPS = { | ||
enabled: true, | ||
sortDescending: true, | ||
sortDescending: false, | ||
}; | ||
|
||
export const DEFAULT_FILTER_PROPS = { | ||
enabled: false, | ||
currValue: null, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.