diff --git a/e2e/components/AILabel/Slug-test.avt.e2e.js b/e2e/components/AILabel/Slug-test.avt.e2e.js index 10db0cd80729..dcbaa8d01217 100644 --- a/e2e/components/AILabel/Slug-test.avt.e2e.js +++ b/e2e/components/AILabel/Slug-test.avt.e2e.js @@ -51,7 +51,7 @@ test.describe('@avt AILabel', () => { test('@avt-keyboard-nav - slug', async ({ page }) => { await visitStory(page, { component: 'Search', - id: 'components-ailabel--callout', + id: 'components-ailabel--explainability-popover', globals: { theme: 'white', }, diff --git a/e2e/components/AILabel/Slug-test.e2e.js b/e2e/components/AILabel/Slug-test.e2e.js index ac94f60eb1d6..61840ef0dda9 100644 --- a/e2e/components/AILabel/Slug-test.e2e.js +++ b/e2e/components/AILabel/Slug-test.e2e.js @@ -25,7 +25,7 @@ test.describe('AILabel', () => { test('AILabel callout @vrt', async ({ page }) => { await snapshotStory(page, { component: 'AILabel', - id: 'components-ailabel--callout', + id: 'components-ailabel--explainability-popover', theme, }); }); diff --git a/packages/react/src/components/AILabel/AILabel.stories.js b/packages/react/src/components/AILabel/AILabel.stories.js index c4172e8ea939..3d10559e4b02 100644 --- a/packages/react/src/components/AILabel/AILabel.stories.js +++ b/packages/react/src/components/AILabel/AILabel.stories.js @@ -243,7 +243,7 @@ export const Default = () => ( ); -export const Callout = (args) => { +export const ExplainabilityPopover = (args) => { const { showSlugActions = true } = args; return ( @@ -284,7 +284,7 @@ export const Callout = (args) => { ); }; -Callout.argTypes = { +ExplainabilityPopover.argTypes = { showSlugActions: { control: { type: 'boolean',