Skip to content

Commit 8743af2

Browse files
IOT-1379: Added sticky to name column on gateway status table (#148)
* Fixed routing of gateway list + fixed memory leak by unsubscribing properly from gateway fetches * Fixed routing errors in gateway list * Changed mqtt datatarget topic placeholder + added tooltip * Added additional text changes from Product Owner * Removed maxLenght from device AND gateway EUI, now removes non-hex digits on submit * Added sticky to name column on gateway status table
1 parent 55164c8 commit 8743af2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/gateway/gateway-status/gateway-status.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ <h3 *ngIf="title" class="title">{{title}}</h3>
2020
<table #gatewayStatus mat-table [dataSource]="dataSource" class="status-table"
2121
*ngIf="dataSource?.data.length && timeColumns.length; else noGatewayStatusData">
2222
<!-- Gateway name is the first column -->
23-
<ng-container matColumnDef="gatewayName">
23+
<ng-container matColumnDef="gatewayName" [sticky]="true">
2424
<td mat-cell *matCellDef="let element">
2525
<a [routerLink]="'/gateways/gateway-detail/' + element.id" routerLinkActive="active" *ngIf="shouldLinkToDetails">{{element.name}}</a>
2626
<span class="text--semibold" *ngIf="!shouldLinkToDetails">{{element.name}}</span>

0 commit comments

Comments
 (0)