aboutsummaryrefslogtreecommitdiff
path: root/modern
diff options
context:
space:
mode:
Diffstat (limited to 'modern')
-rw-r--r--modern/src/main/MainPage.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/modern/src/main/MainPage.js b/modern/src/main/MainPage.js
index 7bc2eb88..4bc703f6 100644
--- a/modern/src/main/MainPage.js
+++ b/modern/src/main/MainPage.js
@@ -3,7 +3,7 @@ import React, {
} from 'react';
import { useNavigate } from 'react-router-dom';
import {
- Paper, Toolbar, IconButton, Button, OutlinedInput, InputAdornment, Popover, FormControl, InputLabel, Select, MenuItem, FormGroup, FormControlLabel, Checkbox,
+ Paper, Toolbar, IconButton, Button, OutlinedInput, InputAdornment, Popover, FormControl, InputLabel, Select, MenuItem, FormGroup, FormControlLabel, Checkbox, Badge,
} from '@mui/material';
import { makeStyles } from '@mui/styles';
import { useTheme } from '@mui/material/styles';
@@ -239,7 +239,9 @@ const MainPage = () => {
endAdornment={(
<InputAdornment position="end">
<IconButton size="small" onClick={() => setFilterAnchorEl(filterRef.current)}>
- <TuneIcon fontSize="small" />
+ <Badge color="info" variant="dot" invisible={!filterStatuses.length && !filterGroups.length}>
+ <TuneIcon fontSize="small" />
+ </Badge>
</IconButton>
</InputAdornment>
)}