aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings/components/BaseCommandView.jsx
diff options
context:
space:
mode:
authorMatjaž Črnko <m.crnko@txt.si>2024-01-22 18:25:48 +0100
committerMatjaž Črnko <m.crnko@txt.si>2024-01-22 18:25:48 +0100
commit19e73a4263d05cba07157d7e6a7f7f971745c662 (patch)
treec0af4558f6a1a84cdc683f1d0d1401b5fe09f63b /modern/src/settings/components/BaseCommandView.jsx
parent2bd044ecf9fa456e168057acc513bd3b4582d0c6 (diff)
downloadtrackermap-web-19e73a4263d05cba07157d7e6a7f7f971745c662.tar.gz
trackermap-web-19e73a4263d05cba07157d7e6a7f7f971745c662.tar.bz2
trackermap-web-19e73a4263d05cba07157d7e6a7f7f971745c662.zip
fix: SelectField - cleaner approach for Autocomplete value handling
Diffstat (limited to 'modern/src/settings/components/BaseCommandView.jsx')
-rw-r--r--modern/src/settings/components/BaseCommandView.jsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/modern/src/settings/components/BaseCommandView.jsx b/modern/src/settings/components/BaseCommandView.jsx
index 070ecfed..f4d5d4b2 100644
--- a/modern/src/settings/components/BaseCommandView.jsx
+++ b/modern/src/settings/components/BaseCommandView.jsx
@@ -31,7 +31,6 @@ const BaseCommandView = ({ deviceId, item, setItem }) => {
value={item.type || null}
onChange={(e) => setItem({ ...item, type: e.target.value, attributes: {} })}
endpoint={deviceId ? `/api/commands/types?${new URLSearchParams({ deviceId }).toString()}` : '/api/commands/types'}
- keyField='type'
keyGetter={(it) => it.type}
titleGetter={(it) => t(prefixString('command', it.type))}
label={t('sharedType')}