mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-01-29 23:54:11 +00:00
Merge branch 'master-3.0' into bugfix/1373
This commit is contained in:
commit
6f3b0d2004
@ -32,7 +32,9 @@ export class ExportPortableProjectComponent implements OnInit {
|
||||
async ngOnInit() {
|
||||
this.controller = this.data.controllerDetails;
|
||||
this.project = this.data.projectDetails;
|
||||
if(this.project){ this.fileName = this.project.name + '.gns3project';}
|
||||
if( this.project){
|
||||
this.fileName = this.project.name + '.gns3project';
|
||||
}
|
||||
await this.formControls();
|
||||
this.compression_methods = this.projectService.getCompression();
|
||||
this.compression_level = this.projectService.getCompressionLevel();
|
||||
|
@ -36,7 +36,7 @@
|
||||
<ng-container matColumnDef="filename">
|
||||
<mat-header-cell *matHeaderCellDef> File Name </mat-header-cell>
|
||||
<mat-cell *matCellDef="let row">
|
||||
<a class="table-link">{{ row.filename }}</a>
|
||||
<mat-list-item role="listitem">{{ row.filename }}</mat-list-item>
|
||||
</mat-cell>
|
||||
</ng-container>
|
||||
|
||||
|
@ -13,5 +13,12 @@
|
||||
mat-header-cell, mat-cell {
|
||||
justify-content: center;
|
||||
}
|
||||
mat-cell, mat-header-cell, mat-footer-cell {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
overflow: initial;
|
||||
min-height: inherit;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user