diff --git a/src/pim-types.ts b/src/pim-types.ts index e201f8c..fbc1687 100644 --- a/src/pim-types.ts +++ b/src/pim-types.ts @@ -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) {