diff --git a/src/components/input/multiselect.vue b/src/components/input/multiselect.vue index 5fd08230..2e908b26 100644 --- a/src/components/input/multiselect.vue +++ b/src/components/input/multiselect.vue @@ -205,6 +205,11 @@ export default { methods: { // Searching will be triggered with a 200ms delay to avoid searching on every keyup event. search() { + + // Updating the query with a binding does not work on mobile for some reason, + // getting the value manual does. + this.query = this.$refs.searchInput.value + if (this.searchTimeout !== null) { clearTimeout(this.searchTimeout) this.searchTimeout = null diff --git a/src/styles/components/labels.scss b/src/styles/components/labels.scss index 0ff50bb9..f851be5e 100644 --- a/src/styles/components/labels.scss +++ b/src/styles/components/labels.scss @@ -15,8 +15,13 @@ } } } + + .multiselect .tag { + margin: 0 0 0 .5rem; + } } .tasks .task span.tag span { width: auto; } +