fix(task): correctly build task identifier

This commit is contained in:
kolaente 2023-10-20 16:42:46 +02:00
parent cac41a1c86
commit d73c62a424
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -52,7 +52,7 @@ export function getTaskIdentifier(task: ITask | null | undefined): string {
} }
if (task.identifier === '') { if (task.identifier === '') {
return `#${task.identifier}` return `#${task.index}`
} }
return task.identifier return task.identifier