diff options
author | Matjaž Črnko <m.crnko@txt.si> | 2024-01-22 21:06:27 +0100 |
---|---|---|
committer | Matjaž Črnko <m.crnko@txt.si> | 2024-01-22 21:06:27 +0100 |
commit | ba24d834925f3d66d875ae601e80a60cf03110cc (patch) | |
tree | 54b665435cd2bff9d21d730f7f7c18dbe509da3b /modern/src/settings/components/BaseCommandView.jsx | |
parent | 829fa6caac936cc53395ca4fe7f05e13c2841588 (diff) | |
download | trackermap-web-ba24d834925f3d66d875ae601e80a60cf03110cc.tar.gz trackermap-web-ba24d834925f3d66d875ae601e80a60cf03110cc.tar.bz2 trackermap-web-ba24d834925f3d66d875ae601e80a60cf03110cc.zip |
fix: SelectField default to null value and fix emptyTitle
Diffstat (limited to 'modern/src/settings/components/BaseCommandView.jsx')
-rw-r--r-- | modern/src/settings/components/BaseCommandView.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/settings/components/BaseCommandView.jsx b/modern/src/settings/components/BaseCommandView.jsx index f4d5d4b2..bb70c3b9 100644 --- a/modern/src/settings/components/BaseCommandView.jsx +++ b/modern/src/settings/components/BaseCommandView.jsx @@ -28,7 +28,7 @@ const BaseCommandView = ({ deviceId, item, setItem }) => { return ( <> <SelectField - value={item.type || null} + value={item.type} onChange={(e) => setItem({ ...item, type: e.target.value, attributes: {} })} endpoint={deviceId ? `/api/commands/types?${new URLSearchParams({ deviceId }).toString()}` : '/api/commands/types'} keyGetter={(it) => it.type} |