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
It would be nice if the documentation included that an action needs to be used for all buttons otherwise a secondary alert will not be shown (cause of the preventNestedAlerts thinking an alert is still open).
E.g. this will not show a second alert (but will close the alert properly):
{
text: I18n.t("no"),
style: "cancel"
}
An empty call statement is a work around:
{
text: I18n.t("no"),
style: "cancel",
call: {
method: () => {}
}
}
The text was updated successfully, but these errors were encountered:
It would be nice if the documentation included that an action needs to be used for all buttons otherwise a secondary alert will not be shown (cause of the preventNestedAlerts thinking an alert is still open).
E.g. this will not show a second alert (but will close the alert properly):
{
text: I18n.t("no"),
style: "cancel"
}
An empty call statement is a work around:
{
text: I18n.t("no"),
style: "cancel",
call: {
method: () => {}
}
}
The text was updated successfully, but these errors were encountered: