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:
parent
b0db3ce34c
commit
37d3715eeb
@ -111,7 +111,7 @@
|
|||||||
<icon icon="align-left" />
|
<icon icon="align-left" />
|
||||||
</span>
|
</span>
|
||||||
<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"
|
class="project-task-icon"
|
||||||
>
|
>
|
||||||
<icon icon="history" />
|
<icon icon="history" />
|
||||||
@ -207,6 +207,7 @@ import {useIntervalFn} from '@vueuse/core'
|
|||||||
import {playPopSound} from '@/helpers/playPop'
|
import {playPopSound} from '@/helpers/playPop'
|
||||||
import {useAuthStore} from '@/stores/auth'
|
import {useAuthStore} from '@/stores/auth'
|
||||||
import {isEditorContentEmpty} from '@/helpers/editorContentEmpty'
|
import {isEditorContentEmpty} from '@/helpers/editorContentEmpty'
|
||||||
|
import {TASK_REPEAT_MODES} from '@/types/IRepeatMode'
|
||||||
|
|
||||||
const {
|
const {
|
||||||
theTask,
|
theTask,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user