Skip to content

Commit

Permalink
Update triggerchannel-picker.vue
Browse files Browse the repository at this point in the history
Fix #1996.

Better solution IMO than openhab/openhab-core#3761.

Signed-off-by: Yannick Schaus <[email protected]>
  • Loading branch information
ghys authored Aug 17, 2023
1 parent 7f2dbb3 commit 339a0d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 339a0d8

Please sign in to comment.