From e03c869187567ef2b94e463508bd55b1167d12e6 Mon Sep 17 00:00:00 2001 From: jonniebigodes Date: Thu, 13 Jul 2023 19:04:36 +0100 Subject: [PATCH] Merge pull request #23442 from storybookjs/chore_docs_web_snippets_fix Docs: (Snippets Web Components) Autodocs fix (cherry picked from commit cfcb363dd12b3f23d2241fea0bdbe30a85a657b5) --- docs/snippets/web-components/button-story-auto-docs.js.mdx | 2 +- docs/snippets/web-components/button-story-auto-docs.ts.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/snippets/web-components/button-story-auto-docs.js.mdx b/docs/snippets/web-components/button-story-auto-docs.js.mdx index d2f2263f49be..c45b64d54fde 100644 --- a/docs/snippets/web-components/button-story-auto-docs.js.mdx +++ b/docs/snippets/web-components/button-story-auto-docs.js.mdx @@ -4,7 +4,7 @@ export default { component: 'custom-button', //👇 Enables auto-generated documentation for the component story - tags: ['docsPage'], + tags: ['autodocs'], argTypes: { backgroundColor: { control: 'color' }, }, diff --git a/docs/snippets/web-components/button-story-auto-docs.ts.mdx b/docs/snippets/web-components/button-story-auto-docs.ts.mdx index 5de4291cfd00..10bed84c1567 100644 --- a/docs/snippets/web-components/button-story-auto-docs.ts.mdx +++ b/docs/snippets/web-components/button-story-auto-docs.ts.mdx @@ -6,7 +6,7 @@ import type { Meta, StoryObj } from '@storybook/web-components'; const Meta: Meta = { component: 'custom-button', //👇 Enables auto-generated documentation for the component story - tags: ['docsPage'], + tags: ['autodocs'], argTypes: { backgroundColor: { control: 'color' }, },