Browse Source

Fix repeat ng insert on safari (#1270)

(cherry picked from commit cf5823fe71)
v2.24.2
Matt Gibson 4 years ago
parent
commit
7b58b66e17
  1. 8
      src/app/organizations/settings/organization-subscription.component.html

8
src/app/organizations/settings/organization-subscription.component.html

@ -71,11 +71,9 @@ @@ -71,11 +71,9 @@
</ng-container>
</div>
<ng-container>
<div class="d-flex">
<button type="button" class="btn btn-outline-secondary" (click)="changePlan()" *ngIf="showChangePlanButton">
{{'changeBillingPlan' | i18n}}
</button>
</div>
<button type="button" class="btn btn-outline-secondary" (click)="changePlan()" *ngIf="showChangePlanButton">
{{'changeBillingPlan' | i18n}}
</button>
<app-change-plan [organizationId]="organizationId" (onChanged)="closeChangePlan(true)"
(onCanceled)="closeChangePlan(false)" *ngIf="showChangePlan"></app-change-plan>
</ng-container>

Loading…
Cancel
Save