diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2021-09-02 23:20:12 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2021-09-02 23:20:12 -0700 |
commit | e6f906dbb565abdb29297ec67db3c922135c628c (patch) | |
tree | a6d1c89436d066ec9171b6a68e8d5e7eeb56d2de /modern/src/settings/ComputedAttributePage.js | |
parent | e5f07d30df69c1fff28cf1ff8502e4843a8b543c (diff) | |
download | trackermap-web-e6f906dbb565abdb29297ec67db3c922135c628c.tar.gz trackermap-web-e6f906dbb565abdb29297ec67db3c922135c628c.tar.bz2 trackermap-web-e6f906dbb565abdb29297ec67db3c922135c628c.zip |
Migrate components
Diffstat (limited to 'modern/src/settings/ComputedAttributePage.js')
-rw-r--r-- | modern/src/settings/ComputedAttributePage.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modern/src/settings/ComputedAttributePage.js b/modern/src/settings/ComputedAttributePage.js index a3b45b4a..7aff0da0 100644 --- a/modern/src/settings/ComputedAttributePage.js +++ b/modern/src/settings/ComputedAttributePage.js @@ -3,9 +3,9 @@ import { Accordion, AccordionSummary, AccordionDetails, makeStyles, Typography, FormControl, InputLabel, MenuItem, Select, TextField, } from '@material-ui/core'; import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; -import t from '../LocalizationProvider'; import EditItemView from '../EditItemView'; import positionAttributes from '../attributes/positionAttributes'; +import { useTranslation } from '../LocalizationProvider'; const useStyles = makeStyles(() => ({ details: { @@ -15,6 +15,8 @@ const useStyles = makeStyles(() => ({ const ComputedAttributePage = () => { const classes = useStyles(); + const t = useTranslation(); + const [item, setItem] = useState(); const [key, setKey] = useState(); |