Skip to content

Commit

Permalink
Merge pull request mui#776 from viict/775-datetimepicker-wrong-time-d…
Browse files Browse the repository at this point in the history
…irection

Fix time order on DateTimePicker mui#775
  • Loading branch information
dmtrKovalenko committed Nov 21, 2018
2 parents b3c5be9 + 96af9c8 commit 9f77ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/DateTimePicker/components/DateTimePickerHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const styles = (theme: Theme) =>
display: 'flex',
justifyContent: 'flex-end',
alignItems: 'flex-end',
flexDirection: theme.direction === 'rtl' ? 'row' : 'row-reverse',
flexDirection: theme.direction === 'rtl' ? 'row-reverse' : 'row',
},
dateHeader: {
height: 60,
Expand Down

0 comments on commit 9f77ae9

Please sign in to comment.