diff --git a/platypush/backend/http/webapp/src/components/elements/Autocomplete.vue b/platypush/backend/http/webapp/src/components/elements/Autocomplete.vue index 71f8605283..ad6c10ec6c 100644 --- a/platypush/backend/http/webapp/src/components/elements/Autocomplete.vue +++ b/platypush/backend/http/webapp/src/components/elements/Autocomplete.vue @@ -20,12 +20,14 @@
- {{ item.substr(0, value.length) }} - {{ item.substr(value?.length || 0) }} + + {{ getItemText(item).substr(0, value.length) }} + {{ getItemText(item).substr(value?.length || 0) }} +
@@ -33,7 +35,6 @@