fix(upc): callback modal trial install expiration time

This commit is contained in:
Zack Spear
2023-08-28 14:52:59 -07:00
parent eee6394d2a
commit dc9a561535
2 changed files with 10 additions and 7 deletions
@@ -190,12 +190,14 @@ const accountActionStatusCopy = computed((): { text: string; } => {
:error="keyInstallStatus === 'failed'"
:text="keyInstallStatusCopy.text"
>
<UpcUptimeExpire
v-if="keyType === 'Trial'"
:for-expire="true"
class="opacity-75 italic mt-4px"
:t="t"
/>
<div v-if="keyType === 'Trial'" class="opacity-75 italic mt-4px">
<UpcUptimeExpire
v-if="refreshServerStateStatus === 'done'"
:for-expire="true"
:t="t"
/>
<p v-else>{{ t('Calculating trial expiration') }}</p>
</div>
<template v-if="keyInstallStatus === 'failed'">
<div v-if="isSupported" class="flex justify-center">
+2 -1
View File
@@ -197,5 +197,6 @@
"Install Extended": "Install Extended",
"Install Recovered": "Install Recovered",
"Install Replaced": "Install Replaced",
"Your free Trial key provides all the functionality of a Pro Registration key": "Your free Trial key provides all the functionality of a Pro Registration key"
"Your free Trial key provides all the functionality of a Pro Registration key": "Your free Trial key provides all the functionality of a Pro Registration key",
"Calculating trial expiration…": "Calculating trial expiration…"
}