diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-06 15:07:38 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-06 15:07:38 -0700 |
commit | 48c039d4e9dc1ed037cde499f06e7c4d7e44b08e (patch) | |
tree | 3ef8e3cb88ca53a5b5c30a15650113af09743861 /modern/src/attributes | |
parent | fa1bec3ba4eea6654273e6ad920ef5d6a4c5dda4 (diff) | |
download | trackermap-web-48c039d4e9dc1ed037cde499f06e7c4d7e44b08e.tar.gz trackermap-web-48c039d4e9dc1ed037cde499f06e7c4d7e44b08e.tar.bz2 trackermap-web-48c039d4e9dc1ed037cde499f06e7c4d7e44b08e.zip |
Small warning fixes
Diffstat (limited to 'modern/src/attributes')
-rw-r--r-- | modern/src/attributes/EditAttributesView.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/attributes/EditAttributesView.js b/modern/src/attributes/EditAttributesView.js index 61d7ad3c..9ca42d2f 100644 --- a/modern/src/attributes/EditAttributesView.js +++ b/modern/src/attributes/EditAttributesView.js @@ -147,7 +147,7 @@ const EditAttributesView = ({ attributes, setAttributes, definitions }) => { }) => { if (type === 'boolean') { return ( - <Grid container direction="row" justify="space-between" key={key}> + <Grid container direction="row" justifyContent="space-between" key={key}> <FormControlLabel control={( <Checkbox |