From 32fad8f692b44f493d576d4caf27939607c6b42a Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Thu, 7 Dec 2023 18:53:32 -0800 Subject: [PATCH] enh(settings): Set main heading for Apps Signed-off-by: Christopher Ng --- apps/settings/src/constants/AppsConstants.js | 1 + apps/settings/src/views/Apps.vue | 13 +++++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/apps/settings/src/constants/AppsConstants.js b/apps/settings/src/constants/AppsConstants.js index aec06aded3a..8df7d44815a 100644 --- a/apps/settings/src/constants/AppsConstants.js +++ b/apps/settings/src/constants/AppsConstants.js @@ -24,6 +24,7 @@ import { translate as t } from '@nextcloud/l10n' /** Enum of verification constants, according to Apps */ export const APPS_SECTION_ENUM = Object.freeze({ + installed: t('settings', 'Your apps'), enabled: t('settings', 'Active apps'), disabled: t('settings', 'Disabled apps'), updates: t('settings', 'Updates'), diff --git a/apps/settings/src/views/Apps.vue b/apps/settings/src/views/Apps.vue index 1a2fbcb1538..b5cfad5632f 100644 --- a/apps/settings/src/views/Apps.vue +++ b/apps/settings/src/views/Apps.vue @@ -31,7 +31,7 @@ :to="{ name: 'apps' }" :exact="true" icon="icon-category-installed" - :name="t('settings', 'Your apps')" /> + :name="$options.APPS_SECTION_ENUM.installed" /> - + @@ -206,6 +208,13 @@ export default { }, computed: { + pageHeading() { + if (this.$options.APPS_SECTION_ENUM[this.category]) { + return this.$options.APPS_SECTION_ENUM[this.category] + } + const category = this.$store.getters.getCategoryById(this.category) + return category.displayName + }, loading() { return this.$store.getters.loading('categories') }, -- 2.39.5