mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
fix(slides): fix mutable options
This commit is contained in:
@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user