mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-06-19 15:23:51 +00:00
Bring back location column
This commit is contained in:
@ -26,7 +26,10 @@
|
|||||||
</mat-cell>
|
</mat-cell>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container matColumnDef="location">
|
||||||
|
<mat-header-cell *matHeaderCellDef> Location </mat-header-cell>
|
||||||
|
<mat-cell *matCellDef="let row"> {{ row.location }} </mat-cell>
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
<ng-container matColumnDef="ip">
|
<ng-container matColumnDef="ip">
|
||||||
<mat-header-cell *matHeaderCellDef> Host </mat-header-cell>
|
<mat-header-cell *matHeaderCellDef> Host </mat-header-cell>
|
||||||
|
@ -21,7 +21,7 @@ import { AddControllerDialogComponent } from './add-controller-dialog/add-contro
|
|||||||
})
|
})
|
||||||
export class ControllersComponent implements OnInit, OnDestroy {
|
export class ControllersComponent implements OnInit, OnDestroy {
|
||||||
dataSource: ControllerDataSource;
|
dataSource: ControllerDataSource;
|
||||||
displayedColumns = ['id', 'name', 'ip', 'port', 'actions'];
|
displayedColumns = ['id', 'name', 'location', 'ip', 'port', 'actions'];
|
||||||
controllerStatusSubscription: Subscription;
|
controllerStatusSubscription: Subscription;
|
||||||
isElectronApp: boolean = false;
|
isElectronApp: boolean = false;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user