1
0
mirror of https://github.com/bitwarden/web synced 2026-01-06 18:43:18 +00:00

notification service implementation

This commit is contained in:
Kyle Spearrin
2018-08-20 22:21:13 -04:00
parent eaf08c45d9
commit 85ca10dbb3
8 changed files with 85 additions and 9 deletions

View File

@@ -209,7 +209,8 @@ export class OrganizationBillingComponent implements OnInit {
}
get isExpired() {
return this.billing != null && this.billing.expiration != null && this.billing.expiration < new Date();
return this.billing != null && this.billing.expiration != null &&
new Date(this.billing.expiration) < new Date();
}
get subscriptionMarkedForCancel() {