Skip to content

Commit

Permalink
[Filters] visual bug on range filter
Browse files Browse the repository at this point in the history
form width was reduced after clicking on slider
  • Loading branch information
paulgirard committed Feb 11, 2025
1 parent c09bde8 commit ae8cbd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const RangeFilterEditor: FC<{ filter: RangeFilterType }> = ({ filter }) =
: {};

return rangeMetric ? (
<form onSubmit={(e) => e.preventDefault()}>
<form onSubmit={(e) => e.preventDefault()} className="w-100">
{rangeMetric.max !== rangeMetric.min ? (
<ul className="list-unstyled range-filter">
{(rangeMetric.ranges || []).map((range) => {
Expand Down

0 comments on commit ae8cbd1

Please sign in to comment.