Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
Fix repeat ng insert on safari (#1270)
Browse files Browse the repository at this point in the history
(cherry picked from commit cf5823f)
  • Loading branch information
MGibson1 committed Nov 1, 2021
1 parent 95b9e6f commit 7b58b66
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,9 @@ <h1>
</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>
Expand Down

0 comments on commit 7b58b66

Please sign in to comment.