Skip to content

Commit

Permalink
fix(AnalyticalTable): prevent an error in the storybook if loading pr…
Browse files Browse the repository at this point in the history
…op was toggled (#679)
  • Loading branch information
Lukas742 authored Sep 14, 2020
1 parent 6882524 commit 296d75b
Show file tree
Hide file tree
Showing 3 changed files with 180 additions and 176 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
"deploy:storybook": "lerna run build:i18n && storybook-to-ghpages --ci"
},
"dependencies": {
"@storybook/addon-actions": "6.0.20",
"@storybook/addon-controls": "6.0.20",
"@storybook/addon-docs": "6.0.20",
"@storybook/addon-toolbars": "6.0.20",
"@storybook/addons": "6.0.20",
"@storybook/cli": "6.0.20",
"@storybook/react": "6.0.20",
"@storybook/theming": "6.0.20",
"@storybook/addon-actions": "6.0.21",
"@storybook/addon-controls": "6.0.21",
"@storybook/addon-docs": "6.0.21",
"@storybook/addon-toolbars": "6.0.21",
"@storybook/addons": "6.0.21",
"@storybook/cli": "6.0.21",
"@storybook/react": "6.0.21",
"@storybook/theming": "6.0.21",
"@ui5/webcomponents": "1.0.0-rc.8",
"@ui5/webcomponents-fiori": "1.0.0-rc.8",
"@ui5/webcomponents-icons": "1.0.0-rc.8",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ import { FlexBox } from '@ui5/webcomponents-react/lib/FlexBox';
import { TextAlign } from '@ui5/webcomponents-react/lib/TextAlign';
import { FlexBoxAlignItems } from '@ui5/webcomponents-react/lib/FlexBoxAlignItems';
import { FlexBoxJustifyContent } from '@ui5/webcomponents-react/lib/FlexBoxJustifyContent';
import { DefaultLoadingComponent } from './defaults/LoadingComponent';
import { DefaultNoDataComponent } from './defaults/NoDataComponent';

<Meta
title="Components / AnalyticalTable"
Expand Down Expand Up @@ -99,6 +101,8 @@ import { FlexBoxJustifyContent } from '@ui5/webcomponents-react/lib/FlexBoxJusti
infiniteScrollThreshold: 20,
subRowsKey: 'subRows',
isTreeTable: false,
NoDataComponent: DefaultNoDataComponent,
LoadingComponent: DefaultLoadingComponent,
scaleWidthMode: TableScaleWidthMode.Default,
selectionMode: TableSelectionMode.SINGLE_SELECT,
selectionBehavior: TableSelectionBehavior.ROW
Expand Down
Loading

0 comments on commit 296d75b

Please sign in to comment.