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
I have a use-case to show only one latest notification through out my application lifetime. Right now we have options to clear all the notifications before showing the new notification. this.notifications.clearAll().success('message')
Even with autoclear config, we have to call clearAll to be safe to show one at a time.
so I suggest to have globals/config 'ember-cli-notifications: { 'count': 1 }, this will limit to one latest notification.
The text was updated successfully, but these errors were encountered:
I have a use-case to show only one latest notification through out my application lifetime. Right now we have options to clear all the notifications before showing the new notification.
this.notifications.clearAll().success('message')
Even with autoclear config, we have to call clearAll to be safe to show one at a time.
so I suggest to have globals/config
'ember-cli-notifications: { 'count': 1 }
, this will limit to one latest notification.The text was updated successfully, but these errors were encountered: