Skip to content
Snippets Groups Projects
Unverified Commit bd125d29 authored by Matiss Janis Aboltins's avatar Matiss Janis Aboltins Committed by GitHub
Browse files

:bug: custom select width and scrollbars (#1294)

Closes #1286, closes #1283

Scrollbar fix by @aleetsaiya
parent 2cc40cbf
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ export default function CustomSelect({ ...@@ -35,7 +35,7 @@ export default function CustomSelect({
arrow={<ExpandArrow style={{ width: 7, height: 7, paddingTop: 3 }} />} arrow={<ExpandArrow style={{ width: 7, height: 7, paddingTop: 3 }} />}
/> />
<ListboxPopover style={{ zIndex: 10000, outline: 0, borderRadius: 4 }}> <ListboxPopover style={{ zIndex: 10000, outline: 0, borderRadius: 4 }}>
<ListboxList> <ListboxList style={{ maxHeight: 250, overflowY: 'scroll' }}>
{options.map(([value, label]) => ( {options.map(([value, label]) => (
<ListboxOption <ListboxOption
key={value} key={value}
......
...@@ -91,7 +91,7 @@ function Header({ ...@@ -91,7 +91,7 @@ function Header({
}} }}
> >
<CustomSelect <CustomSelect
style={{ backgroundColor: 'white', width: 130 }} style={{ backgroundColor: 'white' }}
onChange={newValue => onChange={newValue =>
onChangeDates(...validateStart(allMonths, newValue, end)) onChangeDates(...validateStart(allMonths, newValue, end))
} }
...@@ -100,7 +100,7 @@ function Header({ ...@@ -100,7 +100,7 @@ function Header({
/> />
<View>to</View> <View>to</View>
<CustomSelect <CustomSelect
style={{ backgroundColor: 'white', width: 130 }} style={{ backgroundColor: 'white' }}
onChange={newValue => onChange={newValue =>
onChangeDates(...validateEnd(allMonths, start, newValue)) onChangeDates(...validateEnd(allMonths, start, newValue))
} }
......
---
category: Bugfix
authors: [MatissJanis, aleetsaiya]
---
Fix month picker responsiveness in reports page and make the select boxes scrollable
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment