diff options
author | Anton Tananaev <anton@traccar.org> | 2022-06-26 18:54:48 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-06-26 18:54:48 -0700 |
commit | 5d9a9175f828d016d8ff28ae69c0bd4fa80f2fee (patch) | |
tree | ac64014bc80c220734c7d0566b14bca541882e43 /modern/src/settings | |
parent | 51c215f3f8c036328ced5399cbdd4c1b080518a6 (diff) | |
download | trackermap-web-5d9a9175f828d016d8ff28ae69c0bd4fa80f2fee.tar.gz trackermap-web-5d9a9175f828d016d8ff28ae69c0bd4fa80f2fee.tar.bz2 trackermap-web-5d9a9175f828d016d8ff28ae69c0bd4fa80f2fee.zip |
Computed attributes fixes
Diffstat (limited to 'modern/src/settings')
-rw-r--r-- | modern/src/settings/ComputedAttributePage.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modern/src/settings/ComputedAttributePage.js b/modern/src/settings/ComputedAttributePage.js index 95681f2a..c9170650 100644 --- a/modern/src/settings/ComputedAttributePage.js +++ b/modern/src/settings/ComputedAttributePage.js @@ -36,7 +36,7 @@ const ComputedAttributePage = () => { const [item, setItem] = useState(); - const options = Object.entries(positionAttributes).map(([key, value]) => ({ + const options = Object.entries(positionAttributes).filter(([, value]) => !value.property).map(([key, value]) => ({ key, name: value.name, type: value.type, @@ -71,6 +71,7 @@ const ComputedAttributePage = () => { label={t('sharedDescription')} /> <Autocomplete + value={options.find((option) => option.key === item.attribute) || item.attribute} onChange={(_, option) => { const attribute = option ? option.key || option : null; if (option && option.type) { |