You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
This problem only seems to exist on iOS 12 or older.
I'm using TextField to 'fake' select dropdown by listening for a (tap) event on them and then opening a Dialog. Opening a dialog inside of a modal requires 2 clicks. Dialog will only open on the second click and once you select an action from it and close the modal, the second dialog (first click) opens.
Occasionally I will get an error when opening a modal:
TypeError: undefined is not an object (evaluating 'data.startDate')
Expected behavior
To be able to open dialogs inside a modal.
Additional context
Opening modal:
public showModal(): void {
this.onFocus();
let options = {
context: {
data: data
},
fullscreen: true,
viewContainerRef: this.vcRef
};
this.modal.showModal(ModalViewComponent, options).then(res => {
this.getAllReports();
});
}
Environment
package.json
Describe the bug
This problem only seems to exist on iOS 12 or older.
I'm using TextField to 'fake' select dropdown by listening for a (tap) event on them and then opening a Dialog. Opening a dialog inside of a modal requires 2 clicks. Dialog will only open on the second click and once you select an action from it and close the modal, the second dialog (first click) opens.
Occasionally I will get an error when opening a modal:
Expected behavior
To be able to open dialogs inside a modal.
Additional context
Opening modal:
Opening dialog:
Demo:
Simulator.Screen.Recording.-.iPhone.X.-.2022-02-28.at.14.39.55.mp4
The text was updated successfully, but these errors were encountered: