aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/StopReportPage.js
diff options
context:
space:
mode:
authorAshutosh Bishnoi <mail2bishnoi@gmail.com>2021-04-07 16:07:03 +0530
committerAshutosh Bishnoi <mail2bishnoi@gmail.com>2021-04-07 16:07:03 +0530
commit63f25d26f42f41492a3addea856fc81d3fe73896 (patch)
tree44fbe4e92c6a91c770426c80da44e8ce7bafbc88 /modern/src/reports/StopReportPage.js
parente7245fc142f6aa14e70036c0056c498971944cf9 (diff)
downloadetbsa-traccar-web-63f25d26f42f41492a3addea856fc81d3fe73896.tar.gz
etbsa-traccar-web-63f25d26f42f41492a3addea856fc81d3fe73896.tar.bz2
etbsa-traccar-web-63f25d26f42f41492a3addea856fc81d3fe73896.zip
Adding background paper components to reports
Diffstat (limited to 'modern/src/reports/StopReportPage.js')
-rw-r--r--modern/src/reports/StopReportPage.js15
1 files changed, 9 insertions, 6 deletions
diff --git a/modern/src/reports/StopReportPage.js b/modern/src/reports/StopReportPage.js
index 7873151..d5a2503 100644
--- a/modern/src/reports/StopReportPage.js
+++ b/modern/src/reports/StopReportPage.js
@@ -5,6 +5,7 @@ import { formatDistance, formatHours, formatDate, formatVolume } from '../common
import ReportFilter from './ReportFilter';
import ReportLayoutPage from './ReportLayoutPage';
import { useAttributePreference } from '../common/preferences';
+import { Paper } from '@material-ui/core';
const Filter = ({ setItems }) => {
@@ -80,12 +81,14 @@ const StopReportPage = () => {
return (
<ReportLayoutPage filter={<Filter setItems={setItems} />}>
- <DataGrid
- rows={items}
- columns={columns}
- hideFooter
- autoHeight
- getRowId={() => Math.random()} />
+ <Paper>
+ <DataGrid
+ rows={items}
+ columns={columns}
+ hideFooter
+ autoHeight
+ getRowId={() => Math.random()} />
+ </Paper>
</ReportLayoutPage>
);
};