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
In the Notification Drawer for a quota warning a user may select "Don't Show Me Again" kabob menu option. This will permanently hide the quota warning for the project.
We should be able to reset/restore the quota warning/notification if the quota/limit changes. I.e. if I purchase additional capacity, I should get notifications if I reach/exceed the new quota.
var restorePermanentlyHiddenNotification = function (notificationID, namespace) {
var key = notificationHiddenKey(notificationID, namespace);
localStorage.removeItem(key);
};
Then figure out when to call the restore function from the console.
The text was updated successfully, but these errors were encountered:
In the Notification Drawer for a quota warning a user may select "Don't Show Me Again" kabob menu option. This will permanently hide the quota warning for the project.
We should be able to reset/restore the quota warning/notification if the quota/limit changes. I.e. if I purchase additional capacity, I should get notifications if I reach/exceed the new quota.
Probably need to add to common/notificationService:
Then figure out when to call the restore function from the console.
The text was updated successfully, but these errors were encountered: