aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/SummaryReportPage.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/SummaryReportPage.js
parente7245fc142f6aa14e70036c0056c498971944cf9 (diff)
downloadtrackermap-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/SummaryReportPage.js')
-rw-r--r--modern/src/reports/SummaryReportPage.js16
1 files changed, 9 insertions, 7 deletions
diff --git a/modern/src/reports/SummaryReportPage.js b/modern/src/reports/SummaryReportPage.js
index 2af7d3b0..ff59a1f6 100644
--- a/modern/src/reports/SummaryReportPage.js
+++ b/modern/src/reports/SummaryReportPage.js
@@ -1,6 +1,6 @@
import React, { useState } from 'react';
import { DataGrid } from '@material-ui/data-grid';
-import { FormControlLabel, Checkbox } from '@material-ui/core';
+import { FormControlLabel, Checkbox, Paper } from '@material-ui/core';
import t from '../common/localization';
import { formatDistance, formatHours, formatDate, formatSpeed, formatVolume } from '../common/formatter';
import ReportFilter from './ReportFilter';
@@ -96,12 +96,14 @@ const SummaryReportPage = () => {
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>
);
}