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
1 changed files with 1 additions and 1 deletions

View File

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