Skip to content

Commit

Permalink
fix: range-picker style order #3219 (#3245)
Browse files Browse the repository at this point in the history
  • Loading branch information
zkwolf authored Nov 23, 2020
1 parent 8a6125d commit 12d467e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/date-picker/RangePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ export default defineComponent({
ref={this.savePicker}
id={props.id}
class={classNames(props.class, props.pickerClass)}
style={{ ...style, ...pickerStyle }}
style={{ ...pickerStyle, ...style }}
tabindex={props.disabled ? -1 : 0}
onFocus={onFocus}
onBlur={onBlur}
Expand Down

0 comments on commit 12d467e

Please sign in to comment.