aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/RouteReportPage.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/reports/RouteReportPage.js')
-rw-r--r--modern/src/reports/RouteReportPage.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/modern/src/reports/RouteReportPage.js b/modern/src/reports/RouteReportPage.js
index d2a1b68..7ff5d40 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 (