mirror of
https://github.com/zadam/trilium.git
synced 2025-12-16 13:19:54 +01:00
fix(icon-list): border-left icon regular missing
This commit is contained in:
@@ -2102,8 +2102,8 @@ const icons: Icon[] = [
|
|||||||
type_of_icon: "REGULAR"
|
type_of_icon: "REGULAR"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "border-inline-start",
|
name: "border-left",
|
||||||
slug: "border-inline-start-regular",
|
slug: "border-left-regular",
|
||||||
category_id: 111,
|
category_id: 111,
|
||||||
type_of_icon: "REGULAR"
|
type_of_icon: "REGULAR"
|
||||||
},
|
},
|
||||||
@@ -10259,9 +10259,9 @@ function getIconClass(icon: Icon) {
|
|||||||
return `bxl-${icon.name}`;
|
return `bxl-${icon.name}`;
|
||||||
} else if (icon.type_of_icon === "SOLID") {
|
} else if (icon.type_of_icon === "SOLID") {
|
||||||
return `bxs-${icon.name}`;
|
return `bxs-${icon.name}`;
|
||||||
} else {
|
}
|
||||||
return `bx-${icon.name}`;
|
return `bx-${icon.name}`;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const icon of icons) {
|
for (const icon of icons) {
|
||||||
|
|||||||
Reference in New Issue
Block a user