From b7f6c2e9d046e03babb9d23a60f3bda77c7f36d8 Mon Sep 17 00:00:00 2001 From: William Allen Date: Wed, 24 Jun 2026 16:58:03 -0400 Subject: [PATCH] Fix missing build sidebar error icon The build sidebar currently only renders the warning icon, when it should render both the warning and error icons when appropriate. This PR fixes the issue by properly importing the error icon. --- resources/js/vue/components/shared/BuildSidebar.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/js/vue/components/shared/BuildSidebar.vue b/resources/js/vue/components/shared/BuildSidebar.vue index 939c78e36c..8342e2513c 100644 --- a/resources/js/vue/components/shared/BuildSidebar.vue +++ b/resources/js/vue/components/shared/BuildSidebar.vue @@ -114,6 +114,7 @@ import { faWrench, faHammer, faTriangleExclamation, + faCircleExclamation, faFlask, faUmbrella, faBug, @@ -217,6 +218,7 @@ export default { faWrench, faHammer, faTriangleExclamation, + faCircleExclamation, faFlask, faUmbrella, faBug,