diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-10-26 10:30:22 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-10-26 10:30:22 -0700 |
commit | 439a6fbbdc484c33938559bcce1b5f3f4b188b82 (patch) | |
tree | ce023225aee5b9e4f946f15f11cf1588e446529d /core/src/views | |
parent | 3b402559accc91931d79847ec60dcead512d4461 (diff) | |
download | nextcloud-server-439a6fbbdc484c33938559bcce1b5f3f4b188b82.tar.gz nextcloud-server-439a6fbbdc484c33938559bcce1b5f3f4b188b82.zip |
fix: Settings nav entries typing
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core/src/views')
-rw-r--r-- | core/src/views/UserMenu.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/views/UserMenu.vue b/core/src/views/UserMenu.vue index 7c03a11cf3d..0b96ab3cc66 100644 --- a/core/src/views/UserMenu.vue +++ b/core/src/views/UserMenu.vue @@ -80,7 +80,7 @@ import logger from '../logger.js' * @property {string} classes - Classes for custom styling */ -/** @type {SettingNavEntry[]} */ +/** @type {Record<string, SettingNavEntry>} */ const settingsNavEntries = loadState('core', 'settingsNavEntries', []) const { profile: profileEntry, ...otherEntries } = settingsNavEntries |