Commit 732b32e451fb27c17bc568e2b3f4cbd0d931d3fe
1 parent
6017ed75
correct wrong spread syntax
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
src/components/date-picker/picker/time-picker.js
... | ... | @@ -23,10 +23,10 @@ export default { |
23 | 23 | }, |
24 | 24 | ownPickerProps(){ |
25 | 25 | return { |
26 | - ...this.disabledHours, | |
27 | - ...this.disabledMinutes, | |
28 | - ...this.disabledSeconds, | |
29 | - ...this.hideDisabledOptions, | |
26 | + disabledHours: this.disabledHours, | |
27 | + disabledMinutes: this.disabledMinutes, | |
28 | + disabledSeconds: this.disabledSeconds, | |
29 | + hideDisabledOptions: this.hideDisabledOptions | |
30 | 30 | }; |
31 | 31 | } |
32 | 32 | }, | ... | ... |