Quick Actions & global search #528

Merged
konrad merged 17 commits from feature/quick-action into main 2021-05-30 18:30:08 +00:00
1 changed files with 5 additions and 0 deletions
Showing only changes of commit d706a5d8cc - Show all commits

View File

@ -222,6 +222,11 @@ export default {
.then(r => {
r = r.map(t => {
t.type = TYPE_TASK
const list = this.$store.getters['lists/getListById'](t.listId) === null ? null : this.$store.getters['lists/getListById'](t.listId)
if (list !== null) {
t.title = `${t.title} (${list.title})`
}
return t
})
this.$set(this, 'foundTasks', r)