1
0

Add task filter for kanban

This commit is contained in:
kolaente
2020-12-22 12:49:34 +01:00
parent 1c95e7eae9
commit 0f77ad2d58
3 changed files with 35 additions and 5 deletions

View File

@ -518,7 +518,7 @@ export default {
}
this.prepareSingleValue(filterName)
if (this.filters[filterName] !== '') {
if (typeof this.filters[filterName] !== 'undefined' && this.filters[filterName] !== '') {
this[`${servicePrefix}Service`].getAll({}, {s: this.filters[filterName]})
.then(r => {
this.$set(this, kind, r)