1
0

feat: allow marking a related task done directly from the list

This commit is contained in:
kolaente
2022-09-07 17:47:07 +02:00
committed by Dominik Pschenitschni
parent 943d5f7975
commit ce0f58c783
5 changed files with 60 additions and 33 deletions

View File

@ -68,7 +68,6 @@
<script lang="ts">
import {defineComponent, type PropType} from 'vue'
import {playPop} from '../../../helpers/playPop'
import PriorityLabel from '../../../components/tasks/partials/priorityLabel.vue'
import User from '../../../components/misc/user.vue'
import Done from '@/components/misc/Done.vue'
@ -126,9 +125,6 @@ export default defineComponent({
...task,
done,
})
if (done) {
playPop()
}
} finally {
this.loadingInternal = false
}