Skip to content

Commit

Permalink
Fix fleet sample column width to remove scrollbar (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
IMinchev64 authored Feb 5, 2025
1 parent c4fc9b7 commit 92bd615
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
<span class="status-value">{{ value }}</span>
</ng-template>
</igx-column>
<igx-column field="model" header="Model" [sortable]="true" width="7%"></igx-column>
<igx-column field="model" header="Model" [sortable]="true" width="8%"></igx-column>
<igx-column field="type" header="Type" [sortable]="true" width="10%"></igx-column>
<igx-column field="vin" header="VIN" width="15%"></igx-column>
<igx-column field="vin" header="VIN" width="14%"></igx-column>
<igx-column field="status" header="Status" [sortable]="true" width="14%">
<ng-template igxCell let-value>
<igx-badge [type]="getStatusType(value)">
Expand All @@ -34,7 +34,7 @@
</ng-template>
</igx-column>
<igx-column field="locationCity" header="Location (City)" [sortable]="true" width="11%"></igx-column>
<igx-column field="locationGps" header="Location (GPS)" width="15%">
<igx-column field="locationGps" header="Location (GPS)" width="14%">
<ng-template igxCell let-cell="cell">
<a class="link-style" #coordinates href="#" (click)="showLocationOverlay($event, cell); $event.preventDefault();">{{ cell.value }}</a>
</ng-template>
Expand Down

0 comments on commit 92bd615

Please sign in to comment.