diff --git a/packages/input-email/stories/index.stories.js b/packages/input-email/stories/index.stories.js
index 2cf9e9741..4c02fc277 100644
--- a/packages/input-email/stories/index.stories.js
+++ b/packages/input-email/stories/index.stories.js
@@ -8,13 +8,13 @@ storiesOf('Forms|Input Email', module)
.add(
'Default',
() => html`
-
+
`,
)
.add(
'Faulty prefilled',
() => html`
-
+
`,
)
.add('Use own validator', () => {
@@ -40,6 +40,7 @@ storiesOf('Forms|Input Email', module)
`;
});
diff --git a/packages/input-iban/stories/index.stories.js b/packages/input-iban/stories/index.stories.js
index abad3f8f4..b113f2840 100644
--- a/packages/input-iban/stories/index.stories.js
+++ b/packages/input-iban/stories/index.stories.js
@@ -7,19 +7,27 @@ storiesOf('Forms|Input IBAN', module)
.add(
'Default',
() => html`
-
+
`,
)
.add(
'Prefilled',
() => html`
-
+
`,
)
.add(
'Faulty prefilled',
() => html`
-
+
`,
)
.add(
@@ -29,6 +37,7 @@ storiesOf('Forms|Input IBAN', module)
.modelValue=${'DE89370400440532013000'}
.errorValidators=${[isCountryIBANValidator('NL')]}
name="iban"
+ label="Label"
>
`,
);