diff --git a/bundles/org.openhab.ui/web/src/components/model/model-picker-popup.vue b/bundles/org.openhab.ui/web/src/components/model/model-picker-popup.vue
index 5e6b45887f..16233cb420 100644
--- a/bundles/org.openhab.ui/web/src/components/model/model-picker-popup.vue
+++ b/bundles/org.openhab.ui/web/src/components/model/model-picker-popup.vue
@@ -34,12 +34,17 @@
+
+
+
+
@@ -79,6 +84,8 @@ export default {
loading: false,
initSearchbar: false,
includeNonSemantic: false,
+ includeItemName: false,
+ includeItemTags: false,
expanded: false,
items: [],
links: [],
@@ -287,6 +294,14 @@ export default {
this.includeNonSemantic = !this.includeNonSemantic
this.load()
},
+ toggleItemName () {
+ this.includeItemName = !this.includeItemName
+ this.load()
+ },
+ toggleItemTags () {
+ this.includeItemTags = !this.includeItemTags
+ this.load()
+ },
toggleExpanded () {
this.expanded = !this.expanded
diff --git a/bundles/org.openhab.ui/web/src/components/model/model-treeview.vue b/bundles/org.openhab.ui/web/src/components/model/model-treeview.vue
index 8ff3da7cda..61b28f3a97 100644
--- a/bundles/org.openhab.ui/web/src/components/model/model-treeview.vue
+++ b/bundles/org.openhab.ui/web/src/components/model/model-treeview.vue
@@ -2,6 +2,7 @@
$emit('checked', item, check)" />
@@ -21,7 +22,7 @@