mirror of
https://github.com/zadam/trilium.git
synced 2025-12-15 20:59: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"
|
||||
},
|
||||
{
|
||||
name: "border-inline-start",
|
||||
slug: "border-inline-start-regular",
|
||||
name: "border-left",
|
||||
slug: "border-left-regular",
|
||||
category_id: 111,
|
||||
type_of_icon: "REGULAR"
|
||||
},
|
||||
@@ -10259,9 +10259,9 @@ function getIconClass(icon: Icon) {
|
||||
return `bxl-${icon.name}`;
|
||||
} else if (icon.type_of_icon === "SOLID") {
|
||||
return `bxs-${icon.name}`;
|
||||
} else {
|
||||
return `bx-${icon.name}`;
|
||||
}
|
||||
}
|
||||
return `bx-${icon.name}`;
|
||||
|
||||
}
|
||||
|
||||
for (const icon of icons) {
|
||||
|
||||
Reference in New Issue
Block a user