aboutsummaryrefslogtreecommitdiff
path: root/modern/src/reports/ReportFilter.js
diff options
context:
space:
mode:
authorAshutosh Bishnoi <mail2bishnoi@gmail.com>2020-11-02 18:29:47 +0530
committerAshutosh Bishnoi <mail2bishnoi@gmail.com>2020-11-02 18:29:47 +0530
commit3780cf9986947e409ffccd9e7a06d9554ce3cdcf (patch)
tree88f47314bee42a2764cfb3ff3234489cd5623a43 /modern/src/reports/ReportFilter.js
parent8c167d82b75b764d3b12845aae7827550607a148 (diff)
downloadetbsa-traccar-web-3780cf9986947e409ffccd9e7a06d9554ce3cdcf.tar.gz
etbsa-traccar-web-3780cf9986947e409ffccd9e7a06d9554ce3cdcf.tar.bz2
etbsa-traccar-web-3780cf9986947e409ffccd9e7a06d9554ce3cdcf.zip
Code formatting changes and use of async/await
Diffstat (limited to 'modern/src/reports/ReportFilter.js')
-rw-r--r--modern/src/reports/ReportFilter.js17
1 files changed, 4 insertions, 13 deletions
diff --git a/modern/src/reports/ReportFilter.js b/modern/src/reports/ReportFilter.js
index 6f24804..be48413 100644
--- a/modern/src/reports/ReportFilter.js
+++ b/modern/src/reports/ReportFilter.js
@@ -81,8 +81,7 @@ const ReportFilter = (props) => {
onChange={(e) =>
setFrom(moment(e.target.value, moment.HTML5_FMT.DATETIME_LOCAL))
}
- fullWidth
- />
+ fullWidth />
)}
{period === 'custom' && (
<TextField
@@ -94,23 +93,15 @@ const ReportFilter = (props) => {
onChange={(e) =>
setTo(moment(e.target.value, moment.HTML5_FMT.DATETIME_LOCAL))
}
- fullWidth
- />
+ fullWidth />
)}
<FormControl margin="normal" fullWidth>
- <Button
- type="button"
- color="primary"
- variant="contained"
- disabled={!deviceId}
- onClick={handleShow}
- >
+ <Button type="button" color="primary" variant="contained" disabled={!deviceId} onClick={handleShow}>
{t('reportShow')}
</Button>
</FormControl>
</>
);
-
}
-export default ReportFilter; \ No newline at end of file
+export default ReportFilter;