mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-06-18 06:48:09 +00:00
fix for docker templates
This commit is contained in:
@ -26,7 +26,7 @@
|
|||||||
[ngModelOptions]="{standalone: true}"
|
[ngModelOptions]="{standalone: true}"
|
||||||
[(ngModel)]="selectedImage">
|
[(ngModel)]="selectedImage">
|
||||||
<mat-option *ngFor="let image of dockerImages" [value]="image">
|
<mat-option *ngFor="let image of dockerImages" [value]="image">
|
||||||
{{image.filename}}
|
{{image.image}}
|
||||||
</mat-option>
|
</mat-option>
|
||||||
</mat-select>
|
</mat-select>
|
||||||
<div *ngIf="newImageSelected">
|
<div *ngIf="newImageSelected">
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
export class DockerImage {
|
export class DockerImage {
|
||||||
filename: string;
|
image: string;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user