diff --git a/src/stories/common/AlertBanner/AlertBanner.stories.jsx b/src/stories/common/AlertBanner/AlertBanner.stories.jsx index a5725cc0edf2d3705882841e8d7ab113e02c1727..73929c644d107a533cba482197cb8c6d0d73931b 100644 --- a/src/stories/common/AlertBanner/AlertBanner.stories.jsx +++ b/src/stories/common/AlertBanner/AlertBanner.stories.jsx @@ -11,7 +11,7 @@ export default { export const Default = (args) => <AlertBanner {...args} />; Default.args = { - type: "warning", + type: "WARNING", message: "Your custom message here" }; @@ -32,15 +32,15 @@ ManyAlerts.argTypes = { ManyAlerts.args = { alerts: [ { - type: "info", + type: "INFO", message: "Your info message here" }, { - type: "warning", + type: "WARNING", message: "Your warning message here" }, { - type: "error", + type: "ERROR", message: "Your error message here", link: "#" } diff --git a/src/stories/navigation/ButtonAppBar/ButtonAppBar.stories.jsx b/src/stories/navigation/ButtonAppBar/ButtonAppBar.stories.jsx index d3e55bdb824959107984a8e6db04a85553d85f68..ccb00a1e57252783e7fc74aeff90a9d4d32cc213 100644 --- a/src/stories/navigation/ButtonAppBar/ButtonAppBar.stories.jsx +++ b/src/stories/navigation/ButtonAppBar/ButtonAppBar.stories.jsx @@ -18,7 +18,8 @@ export default { Environment.PROD, Environment.TEST, Environment.DEMO, - Environment.LOCAL + Environment.LOCAL, + Environment.LAB ], control: { type: "radio" } } diff --git a/src/stories/navigation/GlobalAppBar/GlobalAppBar.stories.jsx b/src/stories/navigation/GlobalAppBar/GlobalAppBar.stories.jsx index cdd13d3244e07a4e3f5eebf0ce40cec0ab6586d7..7805adb26071b14b22d10859383d9f27106376ba 100644 --- a/src/stories/navigation/GlobalAppBar/GlobalAppBar.stories.jsx +++ b/src/stories/navigation/GlobalAppBar/GlobalAppBar.stories.jsx @@ -26,6 +26,7 @@ export default { environment: { options: [ Environment.PROD, + Environment.LAB, Environment.TEST, Environment.DEMO, Environment.LOCAL