瀏覽代碼

Updates time remaining text on home view

main
Keith Daulton 2 年之前
父節點
當前提交
ab4422782e
共有 1 個檔案被更改,包括 14 行新增2 行删除
  1. +14
    -2
      src/webviews/apps/home/home.ts

+ 14
- 2
src/webviews/apps/home/home.ts 查看文件

@ -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…
取消
儲存