diff options
author | Anton Tananaev <anton@traccar.org> | 2023-12-28 14:33:51 -0800 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-12-28 14:33:51 -0800 |
commit | 363d473ce27a4d672110005f4dcde6576eb68ccc (patch) | |
tree | 8b2f95adca32cbd5067287a285b4ed8595917e01 /modern/src/common/attributes | |
parent | 0d7af5faf9d3cfd02dc9f03dd16e7824a451022f (diff) | |
download | trackermap-web-363d473ce27a4d672110005f4dcde6576eb68ccc.tar.gz trackermap-web-363d473ce27a4d672110005f4dcde6576eb68ccc.tar.bz2 trackermap-web-363d473ce27a4d672110005f4dcde6576eb68ccc.zip |
Add support link option
Diffstat (limited to 'modern/src/common/attributes')
-rw-r--r-- | modern/src/common/attributes/useServerAttributes.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modern/src/common/attributes/useServerAttributes.js b/modern/src/common/attributes/useServerAttributes.js index e724c2b0..a985ef40 100644 --- a/modern/src/common/attributes/useServerAttributes.js +++ b/modern/src/common/attributes/useServerAttributes.js @@ -1,6 +1,10 @@ import { useMemo } from 'react'; export default (t) => useMemo(() => ({ + support: { + name: t('settingsSupport'), + type: 'string', + }, title: { name: t('serverName'), type: 'string', |