fix for docker templates

This commit is contained in:
piotrpekala7 2020-05-15 23:46:36 +02:00
parent 0e8f9326a3
commit 6fc059bd10
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
[ngModelOptions]="{standalone: true}"
[(ngModel)]="selectedImage">
<mat-option *ngFor="let image of dockerImages" [value]="image">
{{image.filename}}
{{image.image}}
</mat-option>
</mat-select>
<div *ngIf="newImageSelected">

View File

@ -1,3 +1,3 @@
export class DockerImage {
filename: string;
image: string;
}