Skip to content

Commit

Permalink
Merged in r2-3068-current-location-scrollbar (pull request #7009)
Browse files Browse the repository at this point in the history
R2-3068 - Fix current location horizontal scroll bar
  • Loading branch information
aespinoza-quoin authored and pnabutovsky committed Dec 6, 2024
2 parents 943f3df + 25bd032 commit e092e59
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function Component({ filter, mode, moreSectionFilters = {}, multiple = true, res
return (
<Panel filter={filter} getValues={getValues} handleReset={handleReset}>
<Autocomplete
classes={{ root: css.select, ...listboxClasses }}
classes={{ paper: css.paper, root: css.select, ...listboxClasses }}
ListboxComponent={virtualize(filterOptions.length)}
disableListWrap
multiple={multiple}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@
width: 100%;
}

.paper {
& ul {
width: fit-content;
overflow: auto;
}
}

.dateContainer {
width: 100%
}
Expand Down

0 comments on commit e092e59

Please sign in to comment.