Ver a proveniência

Updates time remaining text on home view

main
Keith Daulton há 2 anos
ascendente
cometimento
ab4422782e
1 ficheiros alterados com 14 adições e 2 eliminações
  1. +14
    -2
      src/webviews/apps/home/home.ts

+ 14
- 2
src/webviews/apps/home/home.ts Ver ficheiro

@ -101,7 +101,13 @@ export class HomeApp extends App {
const remaining = getSubscriptionTimeRemaining(subscription, 'days') ?? 0;
DOM.insertTemplate('state:free-preview', this.$slots[index++], {
bindings: {
previewDays: `${remaining === 1 ? `${remaining} day` : `${remaining} days`}`,
previewDays: `${
remaining < 1
? 'less than one day'
: remaining === 1
? `${remaining} day`
: `${remaining} days`
}`,
},
});
@ -124,7 +130,13 @@ export class HomeApp extends App {
DOM.insertTemplate('state:plus-trial', this.$slots[index++], {
bindings: {
plan: subscription.plan.effective.name,
trialDays: `${remaining === 1 ? `${remaining} day` : `${remaining} days`}`,
trialDays: `${
remaining < 1
? 'less than one day'
: remaining === 1
? `${remaining} day`
: `${remaining} days`
}`,
},
});

Carregando…
Cancelar
Guardar