Tasks: ignore empty categories

master
Tom Hacohen 2020-12-09 18:44:57 +02:00
parent a748ae3cf1
commit e3d6bd21e4
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ export class TaskType extends EventType {
}
get tags() {
return this.component.getFirstProperty("categories")?.getValues() ?? [];
return this.component.getFirstProperty("categories")?.getValues()?.filter((x) => x !== "") ?? [];
}
set dueDate(date: ICAL.Time | undefined) {