aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings/components/BaseCommandView.jsx
diff options
context:
space:
mode:
authorMatjaž Črnko <m.crnko@txt.si>2024-01-22 21:06:27 +0100
committerMatjaž Črnko <m.crnko@txt.si>2024-01-22 21:06:27 +0100
commitba24d834925f3d66d875ae601e80a60cf03110cc (patch)
tree54b665435cd2bff9d21d730f7f7c18dbe509da3b /modern/src/settings/components/BaseCommandView.jsx
parent829fa6caac936cc53395ca4fe7f05e13c2841588 (diff)
downloadtrackermap-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.jsx2
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}