diff --git a/web/components/DowngradeOs.ce.vue b/web/components/DowngradeOs.ce.vue index 381c9da4c..8ab85a6d3 100644 --- a/web/components/DowngradeOs.ce.vue +++ b/web/components/DowngradeOs.ce.vue @@ -37,12 +37,20 @@ withDefaults(defineProps(), { const updateOsActionsStore = useUpdateOsActionsStore(); const { rebootType } = storeToRefs(updateOsActionsStore); + +const subtitle = computed(() => { + if (rebootType.value === 'downgrade') { + return t('Please finish the initiated update to enable a downgrade.'); + } + return ''; +});