У меня есть следующий вопрос с Ioni c 4.
Я создал модал в другом модале. Выбор из второго модального должен закрыть оба модальных. К сожалению, это не работает. «Вызывающий» модал не закрывается. Есть идеи?
async openDetailSelection(category:string) {
const modal = await this.modalController.create({
component: IconDetailSelectionPage,
componentProps: {
'category': category
}
});
modal.onDidDismiss().then((dataReturned) => {
if (dataReturned !== null) {
this.selectedIcon=dataReturned.data.icon
console.log("Returned Icon: "+this.selectedIcon.icon)
this.modalController.dismiss({
'icon': this.selectedIcon
});
}
});
return await modal.present();
}