Skip to content
Snippets Groups Projects
Unverified Commit 1b75128f authored by Ariya Hidayat's avatar Ariya Hidayat Committed by GitHub
Browse files

Avoid prop shorthand in month-year parameter widget (#17654)

parent 76514a2e
No related branches found
No related tags found
No related merge requests found
......@@ -57,9 +57,9 @@ export default class DateMonthYearWidget extends React.Component {
onChange={year => this.setState({ year: year })}
/>
</div>
<Flex flexWrap="wrap" w="100%" p={1}>
<Flex flexWrap="wrap" width="100%" p={1}>
{_.range(0, 12).map(m => (
<Flex key={m} w={1 / 3} align="center" justifyContent="center">
<Flex key={m} width={1 / 3} align="center" justifyContent="center">
<Month
month={m}
selected={m === month}
......
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