diff options
-rw-r--r-- | modern/src/reports/EventReportPage.js | 2 | ||||
-rw-r--r-- | modern/src/reports/RouteReportPage.js | 3 | ||||
-rw-r--r-- | modern/src/reports/StopReportPage.js | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/modern/src/reports/EventReportPage.js b/modern/src/reports/EventReportPage.js index e0eed0c6..b11933a3 100644 --- a/modern/src/reports/EventReportPage.js +++ b/modern/src/reports/EventReportPage.js @@ -7,6 +7,7 @@ import ReportFilter from './ReportFilter'; import ReportLayoutPage from './ReportLayoutPage'; const ReportFilterForm = ({ onResult }) => { + const [eventType, setEventType] = useState(['allEvents']); const handleSubmit = async (deviceId, from, to) => { @@ -48,6 +49,7 @@ const ReportFilterForm = ({ onResult }) => { } const EventReportPage = () => { + const [items, setItems] = useState([]); return ( diff --git a/modern/src/reports/RouteReportPage.js b/modern/src/reports/RouteReportPage.js index d2a1b68b..7ff5d409 100644 --- a/modern/src/reports/RouteReportPage.js +++ b/modern/src/reports/RouteReportPage.js @@ -10,7 +10,7 @@ const ReportFilterForm = ({ onResult }) => { const handleSubmit = async (deviceId, from, to) => { const query = new URLSearchParams({ deviceId, from, to }); const response = await fetch(`/api/reports/route?${query.toString()}`, { headers: { Accept: 'application/json' } }); - if(response.ok) { + if (response.ok) { onResult(await response.json()); } } @@ -18,6 +18,7 @@ const ReportFilterForm = ({ onResult }) => { }; const RouteReportPage = () => { + const [items, setItems] = useState([]); return ( diff --git a/modern/src/reports/StopReportPage.js b/modern/src/reports/StopReportPage.js index 751909d6..ec4c1990 100644 --- a/modern/src/reports/StopReportPage.js +++ b/modern/src/reports/StopReportPage.js @@ -19,6 +19,7 @@ const ReportFilterForm = ({ onResult }) => { }; const StopReportPage = () => { + const distanceUnit = useAttributePreference('distanceUnit'); const [items, setItems] = useState([]); |