From a8ef9cc6e9b6f8638acd978dd0ec1116a80e5450 Mon Sep 17 00:00:00 2001 From: J-N-K Date: Sun, 4 Jun 2023 12:23:08 +0200 Subject: [PATCH] Remove "Other Services" section from main settings page (#1891) Add-on service settings are configurable from the respective add-on's page and therefore the "Other Services" section of the main settings page is not needed anymore. Services provided by openHAB core that were previously listed unter "Other Services" were moved to "System Services". Signed-off-by: Jan N. Klug --- .../web/src/pages/settings/settings-menu.vue | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/bundles/org.openhab.ui/web/src/pages/settings/settings-menu.vue b/bundles/org.openhab.ui/web/src/pages/settings/settings-menu.vue index 5920d7f837..d91f4533f1 100644 --- a/bundles/org.openhab.ui/web/src/pages/settings/settings-menu.vue +++ b/bundles/org.openhab.ui/web/src/pages/settings/settings-menu.vue @@ -134,14 +134,6 @@ :link="'services/' + service.id" :title="service.label" /> - Other Services - - - @@ -161,7 +153,6 @@ export default { servicesLoaded: false, addonStoreTabShortcuts: AddonStoreTabShortcuts, systemServices: [], - otherServices: [], objectsSubtitles: { things: 'Manage the physical layer', model: 'The semantic model of your home', @@ -201,7 +192,6 @@ export default { // can be done in parallel! servicesPromise.then((data) => { this.systemServices = data.filter(s => s.category === 'system') - this.otherServices = data.filter(s => s.category !== 'system') this.servicesLoaded = true }) },