Browse Source

Updates time remaining text on home view

main
Keith Daulton 2 years ago
parent
commit
ab4422782e
1 changed files with 14 additions and 2 deletions
  1. +14
    -2
      src/webviews/apps/home/home.ts

+ 14
- 2
src/webviews/apps/home/home.ts View File

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

Loading…
Cancel
Save