Skip to content

Commit

Permalink
Put the badge selector before the car in start transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasBrazi06 committed Sep 20, 2021
1 parent 8450b46 commit 8c0f524
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,6 @@ <h2 class="dialog-title" mat-dialog-title>{{title | translate}}</h2>
</div>
</div>
</div>
<div *ngIf="isCarComponentActive" class="row">
<div class="col-md-12">
<div class="form-group">
<mat-form-field>
<input matInput type="text" readonly=true placeholder="{{'car.title' | translate}}" class="form-field-popup"
(click)="assignCar()" [formControl]="car" />
<button *ngIf="car.enabled && car.value" mat-icon-button matSuffix (click)="resetCar()" aria-label="Add">
<mat-icon>clear</mat-icon>
</button>
</mat-form-field>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
Expand All @@ -52,7 +39,20 @@ <h2 class="dialog-title" mat-dialog-title>{{title | translate}}</h2>
{{"tags.not_active" | translate}}
</mat-error>
</mat-form-field>
</div>
</div>
</div>
<div *ngIf="isCarComponentActive" class="row">
<div class="col-md-12">
<div class="form-group">
<mat-form-field>
<input matInput type="text" readonly=true placeholder="{{'car.title' | translate}}" class="form-field-popup"
(click)="assignCar()" [formControl]="car" />
<button *ngIf="car.enabled && car.value" mat-icon-button matSuffix (click)="resetCar()" aria-label="Add">
<mat-icon>clear</mat-icon>
</button>
</mat-form-field>
</div>
</div>
</div>
<div class="clearfix"></div>
Expand Down

0 comments on commit 8c0f524

Please sign in to comment.