Skip to content

Commit b3e3359

Browse files
fix(ExceptionDateRange): Pass correct props to input
1 parent fa615c7 commit b3e3359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/editor/components/ExceptionDateRange.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export default class ExceptionDateRange extends Component<Props, State> {
154154
<DateTimeField
155155
className='date-range'
156156
dateTime={endMoment}
157-
inputProps={{style: dateTimeProps}}
157+
inputProps={{style: inputStyleProps}}
158158
minDate={startMoment && startMoment.clone().startOf('day').add(2, 'days')} // See above, minDate subtracts an extra day.
159159
onChange={(millis) => this._onRangeUpdate(millis, false)}
160160
{...dateTimeProps}

0 commit comments

Comments
 (0)