We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5306413 commit c99ab31Copy full SHA for c99ab31
1 file changed
src/components/common/DataGrid.tsx
@@ -127,22 +127,21 @@ export function DataGrid({
127
renderEmpty={renderEmpty}
128
>
129
{data && (
130
- <div
131
- style={{
132
- display: 'grid',
133
- gridTemplateColumns: 'minmax(0, 1fr)',
134
- overflowX: 'auto',
135
- }}
136
- >
+ <div
+ style={{
+ display: 'grid',
+ gridTemplateColumns: 'minmax(0, 1fr)',
+ overflowX: 'auto',
+ }}
+ >
137
<Column>
138
{isValidElement(child)
139
? cloneElement(child as ReactElement<any>, { displayMode })
140
: child}
141
</Column>
142
- </div>
143
- )}
144
- </LoadingPanel>
145
- </Column>
+ </div>
+ )}
+ </LoadingPanel>
146
{showPager && (
147
<Row marginTop="4">
148
<Pager
0 commit comments