fix(slides): fix mutable options

This commit is contained in:
Manu Mtz.-Almeida
2018-09-15 10:28:16 +02:00
parent 7bc9a077ca
commit 681981fc89
7 changed files with 241 additions and 48 deletions

View File

@ -233,9 +233,9 @@ export class Datetime implements ComponentInterface {
}
const pickerOptions = this.generatePickerOptions();
this.picker = await this.pickerCtrl.create(pickerOptions);
const picker = this.picker = await this.pickerCtrl.create(pickerOptions);
await this.validate();
await this.picker.present();
await picker.present();
}
private emitStyle() {