Fix multiselect on mobile
This commit is contained in:
parent
427a702bd4
commit
a0664ecb29
2 changed files with 10 additions and 0 deletions
|
@ -205,6 +205,11 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
// Searching will be triggered with a 200ms delay to avoid searching on every keyup event.
|
// Searching will be triggered with a 200ms delay to avoid searching on every keyup event.
|
||||||
search() {
|
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) {
|
if (this.searchTimeout !== null) {
|
||||||
clearTimeout(this.searchTimeout)
|
clearTimeout(this.searchTimeout)
|
||||||
this.searchTimeout = null
|
this.searchTimeout = null
|
||||||
|
|
|
@ -15,8 +15,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.multiselect .tag {
|
||||||
|
margin: 0 0 0 .5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tasks .task span.tag span {
|
.tasks .task span.tag span {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue