Selaa lähdekoodia

Updates time remaining text on home view

main
Keith Daulton 2 vuotta sitten
vanhempi
commit
ab4422782e
1 muutettua tiedostoa jossa 14 lisäystä ja 2 poistoa
  1. +14
    -2
      src/webviews/apps/home/home.ts

+ 14
- 2
src/webviews/apps/home/home.ts Näytä tiedosto

@ -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`
}`,
},
});

Ladataan…
Peruuta
Tallenna