aboutsummaryrefslogtreecommitdiff
path: root/modern/src/DevicePage.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-12-05 17:23:44 -0800
committerAnton Tananaev <anton.tananaev@gmail.com>2020-12-05 17:23:44 -0800
commita4c2f0477dcda2662a3fd268f77a7549dead6e67 (patch)
tree4782c3456ae181f783d24f9892eec4a2c7f509c2 /modern/src/DevicePage.js
parent604eabcd97c6e7ddb42316a5a1fb0abc24e8dc7f (diff)
downloadetbsa-traccar-web-a4c2f0477dcda2662a3fd268f77a7549dead6e67.tar.gz
etbsa-traccar-web-a4c2f0477dcda2662a3fd268f77a7549dead6e67.tar.bz2
etbsa-traccar-web-a4c2f0477dcda2662a3fd268f77a7549dead6e67.zip
Fix default and empty values (fix #802)
Diffstat (limited to 'modern/src/DevicePage.js')
-rw-r--r--modern/src/DevicePage.js15
1 files changed, 8 insertions, 7 deletions
diff --git a/modern/src/DevicePage.js b/modern/src/DevicePage.js
index a8a3de6..145ecc9 100644
--- a/modern/src/DevicePage.js
+++ b/modern/src/DevicePage.js
@@ -36,13 +36,13 @@ const DevicePage = () => {
<AccordionDetails className={classes.details}>
<TextField
margin="normal"
- defaultValue={item.name}
+ value={item.name || ''}
onChange={event => setItem({...item, name: event.target.value})}
label={t('sharedName')}
variant="filled" />
<TextField
margin="normal"
- defaultValue={item.uniqueId}
+ value={item.uniqueId || ''}
onChange={event => setItem({...item, uniqueId: event.target.value})}
label={t('deviceIdentifier')}
variant="filled" />
@@ -57,32 +57,33 @@ const DevicePage = () => {
<AccordionDetails className={classes.details}>
<SelectField
margin="normal"
- defaultValue={item.groupId}
+ value={item.groupId || 0}
onChange={event => setItem({...item, groupId: Number(event.target.value)})}
endpoint="/api/groups"
label={t('groupParent')}
variant="filled" />
<TextField
margin="normal"
- defaultValue={item.phone}
+ value={item.phone || ''}
onChange={event => setItem({...item, phone: event.target.value})}
label={t('sharedPhone')}
variant="filled" />
<TextField
margin="normal"
- defaultValue={item.model}
+ value={item.model || ''}
onChange={event => setItem({...item, model: event.target.value})}
label={t('deviceModel')}
variant="filled" />
<TextField
margin="normal"
- defaultValue={item.contact}
+ value={item.contact || ''}
onChange={event => setItem({...item, contact: event.target.value})}
label={t('deviceContact')}
variant="filled" />
<SelectField
margin="normal"
- defaultValue={item.category}
+ value={item.category || 'default'}
+ emptyValue={null}
onChange={event => setItem({...item, category: event.target.value})}
data={deviceCategories.map(category => ({
id: category,