1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

adjust payment for orgs

This commit is contained in:
Kyle Spearrin
2018-07-17 15:07:32 -04:00
parent e4a684ff10
commit 56b9cb5c9e
4 changed files with 12 additions and 17 deletions

View File

@@ -61,6 +61,6 @@ export class AdjustPaymentComponent {
}
get canChange() {
return this.currentType == null || this.currentType === PaymentMethodType.Card;
return this.currentType == null || this.currentType === PaymentMethodType.Card || this.organizationId != null;
}
}