no longer sanitize before letting full calendar take over

We need to provide a simple string, not html to the library. Script tags seem to have no effect
This commit is contained in:
ulferts
2020-03-02 16:53:15 +01:00
parent 018dc848b3
commit 2eaa2d7cd4
@@ -510,7 +510,7 @@ export class TimeEntryCalendarComponent implements OnInit, OnDestroy, AfterViewI
name += ` - ${this.workPackageName(entry)}`;
}
return this.sanitizedValue(name) || '-';
return name || '-';
}
private workPackageName(entry:TimeEntryResource) {