fix: dropdown reboot link text (#849)

fix: dropdown reboot link
This commit is contained in:
Zack Spear
2024-02-14 07:50:03 -08:00
committed by GitHub
parent eb595cea9e
commit 8954700bcb

View File

@@ -87,8 +87,8 @@ const updateOsToolsUpdatePageButton = computed(() => {
href: WEBGUI_TOOLS_REGISTRATION.toString(),
icon: KeyIcon,
text: rebootType.value === 'downgrade'
? props.t('Reboot Now to Downgrade to {0}', [rebootVersion])
: props.t('Reboot Now to Update to {0}', [rebootVersion]),
? props.t('Reboot Now to Downgrade to {0}', [rebootVersion.value])
: props.t('Reboot Now to Update to {0}', [rebootVersion.value]),
};
});