Tasks: remove the categories property when there are no tags.

Fixes #179
master
Tom Hacohen 2020-12-02 10:01:06 +02:00
parent 9268c110ae
commit a748ae3cf1
1 changed files with 7 additions and 2 deletions

View File

@ -210,9 +210,14 @@ export class TaskType extends EventType {
set tags(tags: string[]) {
const property = this.component.getFirstProperty("categories");
const empty = tags.length === 0;
if (property) {
property.setValues(tags);
} else {
if (empty) {
this.component.removeAllProperties("categories");
} else {
property.setValues(tags);
}
} else if (!empty) {
const newProp = new ICAL.Property("categories", this.component);
newProp.setValues(tags);
this.component.addProperty(newProp);