Skip to content

Commit

Permalink
IOT-1379: Added sticky to name column on gateway status table (#148)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
fcv-iteratorIt authored Dec 5, 2023
1 parent 55164c8 commit 8743af2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h3 *ngIf="title" class="title">{{title}}</h3>
<table #gatewayStatus mat-table [dataSource]="dataSource" class="status-table"
*ngIf="dataSource?.data.length && timeColumns.length; else noGatewayStatusData">
<!-- Gateway name is the first column -->
<ng-container matColumnDef="gatewayName">
<ng-container matColumnDef="gatewayName" [sticky]="true">
<td mat-cell *matCellDef="let element">
<a [routerLink]="'/gateways/gateway-detail/' + element.id" routerLinkActive="active" *ngIf="shouldLinkToDetails">{{element.name}}</a>
<span class="text--semibold" *ngIf="!shouldLinkToDetails">{{element.name}}</span>
Expand Down

0 comments on commit 8743af2

Please sign in to comment.