From 051faa06ac248062b828c7b911bee14bdda17a66 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Wed, 8 Nov 2023 15:07:25 -0800 Subject: [PATCH] fix(web): reboot required disable update check link --- web/store/updateOsActions.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/store/updateOsActions.ts b/web/store/updateOsActions.ts index 0bf98ded9..dc3d795e5 100644 --- a/web/store/updateOsActions.ts +++ b/web/store/updateOsActions.ts @@ -104,11 +104,13 @@ export const useUpdateOsActionsStore = defineStore('updateOsActions', () => { serverStore.inIframe ? 'newTab' : undefined, ); }, + disabled: rebootType.value !== '', external: true, icon: updateOsStore.available ? BellAlertIcon : ArrowPathIcon, name: 'updateOs', text: updateOsStore.available ? 'Unraid OS {0} Update Available' : 'Check for OS Updates', textParams: [updateOsStore.available], + title: rebootType.value !== '' ? rebootTypeText.value : '', }; };