aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2024-06-22 14:19:06 -0700
committerAnton Tananaev <anton@traccar.org>2024-06-22 14:19:06 -0700
commit5997f6ff3dd73164fae065325c58c8c35550fbd2 (patch)
tree82eba739005cf8ffb29ce5b29c66adb9c117beba /src
parentcecc9dd5b9e66cdcf8ffe1d69423d3023cb3de3f (diff)
downloadtrackermap-web-5997f6ff3dd73164fae065325c58c8c35550fbd2.tar.gz
trackermap-web-5997f6ff3dd73164fae065325c58c8c35550fbd2.tar.bz2
trackermap-web-5997f6ff3dd73164fae065325c58c8c35550fbd2.zip
Fix lint warnings
Diffstat (limited to 'src')
-rw-r--r--src/reports/components/ReportFilter.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/reports/components/ReportFilter.jsx b/src/reports/components/ReportFilter.jsx
index 437a7487..fc60ed3a 100644
--- a/src/reports/components/ReportFilter.jsx
+++ b/src/reports/components/ReportFilter.jsx
@@ -11,7 +11,9 @@ import SplitButton from '../../common/components/SplitButton';
import SelectField from '../../common/components/SelectField';
import { useRestriction } from '../../common/util/permissions';
-const ReportFilter = ({ children, handleSubmit, handleSchedule, showOnly, ignoreDevice, multiDevice, includeGroups, loading }) => {
+const ReportFilter = ({
+ children, handleSubmit, handleSchedule, showOnly, ignoreDevice, multiDevice, includeGroups, loading,
+}) => {
const classes = useReportStyles();
const dispatch = useDispatch();
const t = useTranslation();