From aa7543ffb5ffed7e0622337ae8288976a195da52 Mon Sep 17 00:00:00 2001 From: Florian Hotze Date: Mon, 25 Mar 2024 14:05:33 +0100 Subject: [PATCH] Things list: Fix location tab (#2501) Regression from #2499. Signed-off-by: Florian Hotze --- .../web/src/pages/settings/things/things-list.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.ui/web/src/pages/settings/things/things-list.vue b/bundles/org.openhab.ui/web/src/pages/settings/things/things-list.vue index 362b3bedc0..12b2ed7453 100644 --- a/bundles/org.openhab.ui/web/src/pages/settings/things/things-list.vue +++ b/bundles/org.openhab.ui/web/src/pages/settings/things/things-list.vue @@ -212,7 +212,7 @@ export default { }, {}) } else { const locationGroups = this.things.reduce((prev, thing, i, things) => { - if (!this.showNoLocation) return prev + if (!thing.location && !this.showNoLocation) return prev const location = thing.location || '- No location -' if (!prev[location]) { prev[location] = []