From: Michael Tremer Date: Fri, 4 Jul 2025 16:03:46 +0000 (+0000) Subject: frontend: Show an icon in the navigation if we are disconnected X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09870c569e4a41773ba334210ce2a2f976435e66;p=pbs.git frontend: Show an icon in the navigation if we are disconnected Signed-off-by: Michael Tremer --- diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 0fcc303d..307f5af9 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -1,6 +1,9 @@ diff --git a/frontend/src/icons.ts b/frontend/src/icons.ts index 03f8f539..67d5acf0 100644 --- a/frontend/src/icons.ts +++ b/frontend/src/icons.ts @@ -4,11 +4,13 @@ import { library } from "@fortawesome/fontawesome-svg-core"; // Only import the icons we actually need import { faLock, + faPlugCircleXmark, faUser, } from "@fortawesome/free-solid-svg-icons"; // Add them all to the library library.add( faLock, + faPlugCircleXmark, faUser, )