mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
[EC-8] Fix missing verify bank condition
This commit is contained in:
@@ -40,7 +40,15 @@
|
|||||||
<h2 class="spaced-header">{{ "paymentMethod" | i18n }}</h2>
|
<h2 class="spaced-header">{{ "paymentMethod" | i18n }}</h2>
|
||||||
<p *ngIf="!paymentSource">{{ "noPaymentMethod" | i18n }}</p>
|
<p *ngIf="!paymentSource">{{ "noPaymentMethod" | i18n }}</p>
|
||||||
<ng-container *ngIf="paymentSource">
|
<ng-container *ngIf="paymentSource">
|
||||||
<app-callout type="warning" title="{{ 'verifyBankAccount' | i18n }}">
|
<app-callout
|
||||||
|
type="warning"
|
||||||
|
title="{{ 'verifyBankAccount' | i18n }}"
|
||||||
|
*ngIf="
|
||||||
|
forOrganization &&
|
||||||
|
paymentSource.type === paymentMethodType.BankAccount &&
|
||||||
|
paymentSource.needsVerification
|
||||||
|
"
|
||||||
|
>
|
||||||
<p>{{ "verifyBankAccountDesc" | i18n }} {{ "verifyBankAccountFailureWarning" | i18n }}</p>
|
<p>{{ "verifyBankAccountDesc" | i18n }} {{ "verifyBankAccountFailureWarning" | i18n }}</p>
|
||||||
<form
|
<form
|
||||||
#verifyForm
|
#verifyForm
|
||||||
|
|||||||
Reference in New Issue
Block a user