aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/StopReportPage.js
diff options
context:
space:
mode:
authorDesmond Kyeremeh <elDekyfin@gmail.com>2021-07-01 14:01:14 +0000
committerDesmond Kyeremeh <elDekyfin@gmail.com>2021-07-01 14:01:14 +0000
commit7e495f2d557ca738460c1031302929ae075f0399 (patch)
treea218ee3252e746a5b2164bfeddf83c0f400501ac /modern/src/reports/StopReportPage.js
parent8b1c7bb055ceeb4d3e95d7ab3b8fbe7aa1f8dfa7 (diff)
downloadetbsa-traccar-web-7e495f2d557ca738460c1031302929ae075f0399.tar.gz
etbsa-traccar-web-7e495f2d557ca738460c1031302929ae075f0399.tar.bz2
etbsa-traccar-web-7e495f2d557ca738460c1031302929ae075f0399.zip
Renamed ReportLayoutPage to ReportLayout
Diffstat (limited to 'modern/src/reports/StopReportPage.js')
-rw-r--r--modern/src/reports/StopReportPage.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/modern/src/reports/StopReportPage.js b/modern/src/reports/StopReportPage.js
index 6953c46..57f5956 100644
--- a/modern/src/reports/StopReportPage.js
+++ b/modern/src/reports/StopReportPage.js
@@ -3,7 +3,7 @@ import { DataGrid } from '@material-ui/data-grid';
import { useTheme } from "@material-ui/core/styles";
import { formatDistance, formatHours, formatDate, formatVolume } from '../common/formatter';
import ReportFilter from './ReportFilter';
-import ReportLayoutPage from './ReportLayoutPage';
+import ReportLayout from './ReportLayout';
import { useAttributePreference } from '../common/preferences';
import t from '../common/localization';
@@ -82,14 +82,14 @@ const StopReportPage = () => {
}]
return (
- <ReportLayoutPage filter={<Filter setItems={setItems} />}>
+ <ReportLayout filter={<Filter setItems={setItems} />}>
<DataGrid
rows={items}
columns={columns}
hideFooter
autoHeight
getRowId={() => Math.random()} />
- </ReportLayoutPage>
+ </ReportLayout>
);
};