correct wrong spread syntax

This commit is contained in:
Sergio Crisostomo 2018-02-05 08:44:31 +01:00
parent 6017ed7509
commit 732b32e451

View file

@ -23,10 +23,10 @@ export default {
}, },
ownPickerProps(){ ownPickerProps(){
return { return {
...this.disabledHours, disabledHours: this.disabledHours,
...this.disabledMinutes, disabledMinutes: this.disabledMinutes,
...this.disabledSeconds, disabledSeconds: this.disabledSeconds,
...this.hideDisabledOptions, hideDisabledOptions: this.hideDisabledOptions
}; };
} }
}, },