diff options
author | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2021-04-07 16:07:03 +0530 |
---|---|---|
committer | Ashutosh Bishnoi <mail2bishnoi@gmail.com> | 2021-04-07 16:07:03 +0530 |
commit | 63f25d26f42f41492a3addea856fc81d3fe73896 (patch) | |
tree | 44fbe4e92c6a91c770426c80da44e8ce7bafbc88 /modern/src/reports/EventReportPage.js | |
parent | e7245fc142f6aa14e70036c0056c498971944cf9 (diff) | |
download | trackermap-web-63f25d26f42f41492a3addea856fc81d3fe73896.tar.gz trackermap-web-63f25d26f42f41492a3addea856fc81d3fe73896.tar.bz2 trackermap-web-63f25d26f42f41492a3addea856fc81d3fe73896.zip |
Adding background paper components to reports
Diffstat (limited to 'modern/src/reports/EventReportPage.js')
-rw-r--r-- | modern/src/reports/EventReportPage.js | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/modern/src/reports/EventReportPage.js b/modern/src/reports/EventReportPage.js index cbe2ced5..890af348 100644 --- a/modern/src/reports/EventReportPage.js +++ b/modern/src/reports/EventReportPage.js @@ -1,6 +1,6 @@ import React, { useState } from 'react'; import { DataGrid } from '@material-ui/data-grid'; -import { FormControl, InputLabel, Select, MenuItem } from '@material-ui/core'; +import { FormControl, InputLabel, Select, MenuItem, Paper } from '@material-ui/core'; import t from '../common/localization'; import { formatDate } from '../common/formatter'; import ReportFilter from './ReportFilter'; @@ -84,11 +84,13 @@ const EventReportPage = () => { return ( <ReportLayoutPage filter={<Filter setItems={setItems} />}> - <DataGrid - rows={items} - columns={columns} - hideFooter - autoHeight /> + <Paper> + <DataGrid + rows={items} + columns={columns} + hideFooter + autoHeight /> + </Paper> </ReportLayoutPage> ); } |