Skip to content

Commit

Permalink
Update app.component.html
Browse files Browse the repository at this point in the history
  • Loading branch information
id1945 authored Nov 7, 2023
1 parent 638e57c commit 907feaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ <h1> ngx-scanner-qrcode </h1>
<button (click)="applyConstraints()" class="btn btn-success">App</button>

<div class="d-flex justify-content-center my-2">
<div class="col-xs-12 col-md-6 col-lg-4 col-xl-3 m-1">
<div class="col-xs-12 col-md-6 col-lg-4 col-xl-2 m-1">
<select #select3 (change)="percentage = +select3.value" class="form-select form-select-md">
<option *ngFor="let item of [10,20,30,40,50,60,70,80,90,100]" [value]="item" [selected]="item == percentage">Scale {{item}}%</option>
</select>
</div>
<div class="col-xs-12 col-md-6 col-lg-4 col-xl-3 m-1">
<div class="col-xs-12 col-md-6 col-lg-4 col-xl-2 m-1">
<select #select4 (change)="quality = +select4.value" class="form-select form-select-md">
<option *ngFor="let item of [10,20,30,40,50,60,70,80,90,100]" [value]="item" [selected]="item == quality">Quality {{item}}%</option>
</select>
Expand Down

0 comments on commit 907feaa

Please sign in to comment.