1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

[CL-372] Add required type attr to buttons in stories (#15892)

This commit is contained in:
Vicki League
2025-08-06 16:16:17 -04:00
committed by GitHub
parent 6ec0a61b7e
commit 8ae015f2d8
16 changed files with 132 additions and 128 deletions

View File

@@ -153,7 +153,7 @@ export const PreserveContentTabs: Story = {
export const KeyboardNavigation: Story = {
render: (args) => ({
props: args,
template: `
template: /*html*/ `
<bit-tab-group label="Keyboard Navigation Tabs" class="tw-text-main">
<bit-tab label="Form Tab">
<p>
@@ -174,7 +174,7 @@ export const KeyboardNavigation: Story = {
<p>This tab has no focusable content, but the panel should still be focusable</p>
</bit-tab>
</bit-tab-group>
<button bitButton buttonType="primary" class="tw-mt-5">External Button</button>
<button type="button" bitButton buttonType="primary" class="tw-mt-5">External Button</button>
`,
}),
};