Skip to content

Commit 4796146

Browse files
committed
Fixed the stories structuring.
1 parent 3abe17a commit 4796146

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

x-pack/plugins/security_solution/public/common/components/conditions_table/index.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ addDecorator((storyFn) => (
1515
<ThemeProvider theme={() => ({ eui: euiLightVars, darkMode: false })}>{storyFn()}</ThemeProvider>
1616
));
1717

18-
storiesOf('Components|ConditionsTable', module)
18+
storiesOf('Components/ConditionsTable', module)
1919
.add('single item', () => {
2020
return <ConditionsTable items={createItems(1)} columns={TEST_COLUMNS} badge="and" />;
2121
})

x-pack/plugins/security_solution/public/common/components/item_details_card/index.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ addDecorator((storyFn) => (
1414
<ThemeProvider theme={() => ({ eui: euiLightVars, darkMode: false })}>{storyFn()}</ThemeProvider>
1515
));
1616

17-
storiesOf('Components|ItemDetailsCard', module).add('default', () => {
17+
storiesOf('Components/ItemDetailsCard', module).add('default', () => {
1818
return (
1919
<ItemDetailsCard>
2020
<ItemDetailsPropertySummary name={'property 1'} value={'value 1'} />

x-pack/plugins/security_solution/public/management/pages/trusted_apps/view/components/trusted_app_card/index.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ addDecorator((storyFn) => (
2424
</KibanaContextProvider>
2525
));
2626

27-
storiesOf('TrustedApps|TrustedAppCard', module)
27+
storiesOf('TrustedApps/TrustedAppCard', module)
2828
.add('default', () => {
2929
const trustedApp: TrustedApp = createSampleTrustedApp(5);
3030
trustedApp.created_at = '2020-09-17T14:52:33.899Z';

0 commit comments

Comments
 (0)