Skip to content

Commit

Permalink
BASIRA #257 - Updating FacetSlider to allow non-numeric values
Browse files Browse the repository at this point in the history
  • Loading branch information
dleadbetter committed Nov 29, 2024
1 parent 6e6c8fa commit a98ae56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/semantic-ui/src/components/FacetSlider.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const FacetSlider = forwardRef(({ useRangeSlider, ...props }: Props, ref: HTMLEl
let inputValue = parseInt(str, RADIX);

if (_.isNaN(inputValue)) {
inputValue = '';
inputValue = str;
}

return inputValue;
Expand Down

0 comments on commit a98ae56

Please sign in to comment.