We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4876efd commit 671e791Copy full SHA for 671e791
bundles/org.openhab.ui/web/src/pages/settings/menu/settings-menu.vue
@@ -215,7 +215,7 @@ export default {
215
if (!this.apiEndpoints) return
216
217
const servicesPromise = (this.$store.getters.apiEndpoint('services')) ? this.$oh.api.get('/rest/services') : Promise.resolve([])
218
- const addonsPromise = (this.$store.getters.apiEndpoint('addons')) ? this.$oh.api.get('/rest/addons') : Promise.resolve([])
+ const addonsPromise = (this.$store.getters.apiEndpoint('addons')) ? this.$oh.api.get('/rest/addons?serviceId=all') : Promise.resolve([])
219
220
// can be done in parallel!
221
servicesPromise.then((data) => {
0 commit comments