diff --git a/scm-ui/ui-components/src/__snapshots__/storyshots.test.ts.snap b/scm-ui/ui-components/src/__snapshots__/storyshots.test.ts.snap index 2a9907906d..6fef75054b 100644 --- a/scm-ui/ui-components/src/__snapshots__/storyshots.test.ts.snap +++ b/scm-ui/ui-components/src/__snapshots__/storyshots.test.ts.snap @@ -41565,6 +41565,97 @@ exports[`Storyshots Modal|Modal Default 1`] = ` `; +exports[`Storyshots Modal|Modal With Checkbox with HelpText inside 1`] = ` +
+
+
+
+

+ Hitchhiker Modal +

+
+
+

+ This content should not cause a vertical scrollbar. +

+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+`; + exports[`Storyshots Navigation|Secondary Active when match 1`] = `
@@ -37,9 +43,26 @@ const body = (

); +const checkboxBody = ( + <> +

This content should not cause a vertical scrollbar.

+ + + + + +); + storiesOf("Modal|Modal", module) .addDecorator(story => {story()}) - .add("Default", () => ); + .add("Default", () => ) + .add("With Checkbox with HelpText inside", () => ( + true} active={true} title={"Hitchhiker Modal"} /> + )); const CloseableModal = () => { const [show, setShow] = useState(true);