coloredEvents should also color the symbol if that is displayed

This commit is contained in:
Johan Alvinger 2020-11-26 17:14:59 +01:00
parent 99aaae491c
commit 1e34764588

View File

@ -262,6 +262,7 @@ Module.register("calendar", {
if (needle.test(event.title)) {
eventWrapper.style.cssText = "color:" + this.config.coloredEvents[ev].color;
titleWrapper.style.cssText = "color:" + this.config.coloredEvents[ev].color;
if (this.config.displaySymbol) symbolWrapper.style.cssText = "color:" + this.config.coloredEvents[ev].color;
break;
}
}