diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-14 18:39:00 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-14 18:39:00 -0700 |
commit | 95b92e86ed53d42884fa139261e0994599179ac0 (patch) | |
tree | 3b5c3bdc5cbb2c11c3c4de840099ec90ce1ece08 /modern | |
parent | 46e96c7e87b8f2401ebbabaa132a888e383aab30 (diff) | |
download | trackermap-web-95b92e86ed53d42884fa139261e0994599179ac0.tar.gz trackermap-web-95b92e86ed53d42884fa139261e0994599179ac0.tar.bz2 trackermap-web-95b92e86ed53d42884fa139261e0994599179ac0.zip |
Fix issues
Diffstat (limited to 'modern')
-rw-r--r-- | modern/src/reports/RouteReportPage.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modern/src/reports/RouteReportPage.js b/modern/src/reports/RouteReportPage.js index 80e22bf6..aefd0c6e 100644 --- a/modern/src/reports/RouteReportPage.js +++ b/modern/src/reports/RouteReportPage.js @@ -1,10 +1,12 @@ import React, { useState } from 'react'; +import { + FormControl, InputLabel, MenuItem, Select, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, +} from '@material-ui/core'; import ReportFilter, { useFilterStyles } from './components/ReportFilter'; import { useTranslation } from '../common/components/LocalizationProvider'; import PageLayout from '../common/components/PageLayout'; import ReportsMenu from './components/ReportsMenu'; import usePersistedState from '../common/util/usePersistedState'; -import { FormControl, InputLabel, MenuItem, Select, Table, TableBody, TableCell, TableContainer, TableHead, TableRow } from '@material-ui/core'; import PositionValue from '../common/components/PositionValue'; const columnsArray = [ |