-
Notifications
You must be signed in to change notification settings - Fork 2.8k
V16: Removes all generic Created, Saved, and Deleted notifications #19119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V16: Removes all generic Created, Saved, and Deleted notifications #19119
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This pull request removes the generic success notifications for "Created", "Saved", and "Deleted" actions in the Backoffice repository to reduce UI noise in the new design.
- Removed notification-related imports and context consumption.
- Deleted notification invocations within the create, update, and delete flows.
Seems alot of the E2E tests are reliant on reading the success notifications, to ensure that the operation succeded 🙈 |
…//github.com/umbraco/Umbraco-CMS into v16/feature/no-generic-success-notifications
Description
The motivation behind this pull request is to put an end to the bloat of success notifications in the Backoffice. In former times, the Backoffice had a very subtle notification bar and thus could show notifications without bothering the user too much. With the new Backoffice, the notification bubble has become a lot more visible, but so have all other visual elements to tell the user that an action has succeeded or not.
This is why we think we can bluntly remove the (admittedly hardcoded) generic success notification bubbles for "Created", "Saved", and "Deleted".
The UI should reflect if the action has been completed in other ways, such as redirecting to the newly created entity automatically and/or updating the trees automatically.