fix(task): show repeating indicator in task list for monthly repeating tasks

Resolves https://kolaente.dev/vikunja/vikunja/issues/2319
This commit is contained in:
kolaente 2024-05-05 15:03:43 +02:00
parent b0db3ce34c
commit 37d3715eeb
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 1 deletions

View File

@ -111,7 +111,7 @@
<icon icon="align-left" />
</span>
<span
v-if="task.repeatAfter.amount > 0"
v-if="task.repeatAfter.amount > 0 || (task.repeatAfter.amount === 0 && task.repeatMode === TASK_REPEAT_MODES.REPEAT_MODE_MONTH)"
class="project-task-icon"
>
<icon icon="history" />
@ -207,6 +207,7 @@ import {useIntervalFn} from '@vueuse/core'
import {playPopSound} from '@/helpers/playPop'
import {useAuthStore} from '@/stores/auth'
import {isEditorContentEmpty} from '@/helpers/editorContentEmpty'
import {TASK_REPEAT_MODES} from '@/types/IRepeatMode'
const {
theTask,