diff options
author | Anton Tananaev <anton@traccar.org> | 2024-06-22 14:19:06 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2024-06-22 14:19:06 -0700 |
commit | 5997f6ff3dd73164fae065325c58c8c35550fbd2 (patch) | |
tree | 82eba739005cf8ffb29ce5b29c66adb9c117beba /src | |
parent | cecc9dd5b9e66cdcf8ffe1d69423d3023cb3de3f (diff) | |
download | trackermap-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.jsx | 4 |
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(); |