From fb7002909119105ab9f87210f983d68ef07809b2 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 15 Dec 2025 11:25:42 +0200 Subject: [PATCH] fix(icon-list): border-left icon regular missing --- apps/client/src/widgets/icon_list.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/client/src/widgets/icon_list.ts b/apps/client/src/widgets/icon_list.ts index cef6eaf34..367b360ce 100644 --- a/apps/client/src/widgets/icon_list.ts +++ b/apps/client/src/widgets/icon_list.ts @@ -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) {