Add option to disable What's New notification and indicator #24470
Replies: 3 comments 1 reply
-
Hey @hudochenkov, thanks for reaching out to us with your idea. Appreciate it 🙏 ! Whether this would eventually materialize or not will be up for debate. In the meantime, you can disable the notifications from showing up by adjusting your Storybook configuration file by adding the Hope you have a fantastic day. Stay safe |
Beta Was this translation helpful? Give feedback.
-
An ugly (hacky) way to disable the <style type="text/css">
button[title='Shortcuts']::before,
button[title='Shortcuts']::after,
#list-item-whats-new,
#list-item-about,
#list-item-documentation {
display: none;
}
</style> Of course, it won't disable the annoying items, will just hide them... |
Beta Was this translation helpful? Give feedback.
-
In order to target the notification at the bottom, you can use the following selector. Note that over time this might need to be adjusted but this seems the most straightforward way to do it currently. #root > div:first-child > div:first-child {
display: none;
} |
Beta Was this translation helpful? Give feedback.
-
Is your feature request related to a problem? Please describe.
Many people prefer to avoid notifications, popups, toasts, and other ways to get attention. What's New notification toast and indicator are such things.
I subscribed to the Storybook blog RSS, and I update Storybook regularly. Extra notifications add more distraction to me.
Describe the solution you'd like
Add an option to turn off What's New notification toast and indicator on the cog menu:
Describe alternatives you've considered
As a workaround, developers could use Stylus browser extension to apply custom CSS to hide these things. But it's not a good solution, as it should be done on each developer machine.
Are you able to assist to bring the feature to reality?
no
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions