We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f43389 commit babf03fCopy full SHA for babf03f
packages/pluggableWidgets/datagrid-web/src/components/GridBody.tsx
@@ -8,7 +8,6 @@ interface Props {
8
className?: string;
9
children?: React.ReactNode;
10
loadingType: LoadingTypeEnum;
11
- // isLoading: boolean;
12
isFetchingNextBatch?: boolean;
13
columnsHidable: boolean;
14
columnsSize: number;
@@ -20,9 +19,6 @@ export function GridBody(props: Props): ReactElement {
20
19
const { children } = props;
21
22
const content = (): React.ReactElement => {
23
- // if (props.isLoading) {
24
- // return <Loader {...props} rowsSize={props.rowsSize > 0 ? props.rowsSize : props.pageSize} />;
25
- // }
26
return (
27
<Fragment>
28
{children}
0 commit comments