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
})
},