We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 979c4b4 + 222527e commit 125fc00Copy full SHA for 125fc00
src/apps/dashboard/routes/activity.tsx
@@ -223,7 +223,14 @@ const Activity = () => {
223
title={globalize.translate('HeaderActivity')}
224
className='mainAnimatedPage type-interior'
225
>
226
- <div className='content-primary'>
+ <Box
227
+ className='content-primary'
228
+ sx={{
229
+ display: 'flex',
230
+ flexDirection: 'column',
231
+ height: '100%'
232
+ }}
233
+ >
234
<Box
235
sx={{
236
display: 'flex',
@@ -262,11 +269,8 @@ const Activity = () => {
262
269
rowCount={rowCount}
263
270
getRowId={getRowId}
264
271
loading={isLoading}
265
- sx={{
266
- minHeight: 500
267
- }}
268
272
/>
- </div>
273
+ </Box>
274
</Page>
275
);
276
};
0 commit comments