diff --git a/web/components/Notifications/Item.vue b/web/components/Notifications/Item.vue index a908c1761..1a775455b 100644 --- a/web/components/Notifications/Item.vue +++ b/web/components/Notifications/Item.vue @@ -128,7 +128,7 @@ const reformattedTimestamp = computed(() => { +
diff --git a/web/components/UpdateOs/Status.vue b/web/components/UpdateOs/Status.vue index c9e600c42..400b55cef 100644 --- a/web/components/UpdateOs/Status.vue +++ b/web/components/UpdateOs/Status.vue @@ -110,6 +110,12 @@ const checkButton = computed((): BrandButtonProps => { : props.t('Unraid OS {0} Update Available', [available.value]), }; }); + +const navigateToRegistration = () => { + if (typeof window !== 'undefined') { + window.location.href = WEBGUI_TOOLS_REGISTRATION.toString(); + } +};