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
The autoDismiss property disables also dismissing on tap and swipe. It would be better to have option to have infinite banner which will be dismissible on tap or swipe.
The text was updated successfully, but these errors were encountered:
I hit this issue previously and in looking at the code, realized that you can restore the expected behavior, you just have to do it manually:
banner.autoDismiss = false
// autoDismiss = true implicitly disables user initiated dismissing, so those actions need to be
// explicitly re-enabled to work as expected.
banner.dismissOnTap = true
banner.dismissOnSwipeUp = true
The autoDismiss property disables also dismissing on tap and swipe. It would be better to have option to have infinite banner which will be dismissible on tap or swipe.
The text was updated successfully, but these errors were encountered: