use solid type for font awesome icons

related to #2768
This commit is contained in:
Christopher Fenner 2022-01-05 13:13:40 +01:00 committed by GitHub
parent a6cbc9f0ef
commit 060ca43fc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -239,7 +239,7 @@ Module.register("calendar", {
const symbols = this.symbolsForEvent(event);
symbols.forEach((s, index) => {
const symbol = document.createElement("span");
symbol.className = "fa fa-fw fa-" + s;
symbol.className = "fas fa-fw fa-" + s;
if (index > 0) {
symbol.style.paddingLeft = "5px";
}