From fdadfe699c332446475571418f997f2023939509 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Mon, 6 Nov 2023 14:14:03 -0800 Subject: [PATCH] fix(web): upc dropdown updates external icon --- web/store/updateOsActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/store/updateOsActions.ts b/web/store/updateOsActions.ts index e4939a4c3..0bf98ded9 100644 --- a/web/store/updateOsActions.ts +++ b/web/store/updateOsActions.ts @@ -104,7 +104,7 @@ export const useUpdateOsActionsStore = defineStore('updateOsActions', () => { serverStore.inIframe ? 'newTab' : undefined, ); }, - external: !!updateOsStore.available, + external: true, icon: updateOsStore.available ? BellAlertIcon : ArrowPathIcon, name: 'updateOs', text: updateOsStore.available ? 'Unraid OS {0} Update Available' : 'Check for OS Updates',