From 339a0d87aa5bfdbd58b92fa393c2542748cc13ac Mon Sep 17 00:00:00 2001 From: Yannick Schaus Date: Fri, 18 Aug 2023 01:52:49 +0200 Subject: [PATCH] Update triggerchannel-picker.vue Fix #1996. Better solution IMO than https://github.com/openhab/openhab-core/pull/3761. Signed-off-by: Yannick Schaus --- .../src/components/config/controls/triggerchannel-picker.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.ui/web/src/components/config/controls/triggerchannel-picker.vue b/bundles/org.openhab.ui/web/src/components/config/controls/triggerchannel-picker.vue index ca534a3a26..b3ec4b52cc 100644 --- a/bundles/org.openhab.ui/web/src/components/config/controls/triggerchannel-picker.vue +++ b/bundles/org.openhab.ui/web/src/components/config/controls/triggerchannel-picker.vue @@ -33,7 +33,7 @@ export default { }, created () { this.smartSelectParams.closeOnSelect = !(this.multiple) - this.$oh.api.get('/rest/things?staticDataOnly=true').then((data) => { + this.$oh.api.get('/rest/things').then((data) => { this.things = data.sort((a, b) => { const labelA = a.label const labelB = b.label