aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modern/src/reports/ReportFilter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/reports/ReportFilter.js b/modern/src/reports/ReportFilter.js
index 9af3f7d..164dbf9 100644
--- a/modern/src/reports/ReportFilter.js
+++ b/modern/src/reports/ReportFilter.js
@@ -99,7 +99,7 @@ const ReportFilter = ({ children, handleSubmit, showOnly }) => {
)}
{children}
<FormControl margin="normal" fullWidth>
- <ButtonGroup color="primary" orientation="vertical" disabled={ !deviceId }>
+ <ButtonGroup color="primary" orientation="vertical" disabled={!deviceId}>
<Button onClick={() => handleClick(false, true)}>{t('reportShow')}</Button>
{!showOnly && <Button onClick={() => handleClick(false, false)}>{t('reportExport')}</Button>}
{!showOnly && <Button onClick={() => handleClick(true, false)}>{t('reportEmail')}</Button>}