Skip to content

Commit

Permalink
Add missing checkImageFromVersion() for IOS and IOU
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Jan 20, 2025
1 parent 2a9ced5 commit 84169a2
Showing 1 changed file with 19 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ <h1 mat-dialog-title>Add new template</h1>
</mat-select>
</div>
<div>
Install required files
Install the required files
<button
mat-icon-button
matTooltip="Refresh list of images"
Expand Down Expand Up @@ -441,7 +441,7 @@ <h1 mat-dialog-title>Add new template</h1>
</mat-radio-group>
</div>
<div>
Install required files
Install the required images
<button
mat-icon-button
matTooltip="Refresh list of images"
Expand All @@ -453,10 +453,16 @@ <h1 mat-dialog-title>Add new template</h1>
<mat-list>
<mat-list-item *ngFor="let image of applianceToInstall.images">
<div class="list-item">
<div>
<span>
{{ image.filename }}
</div>
</span>
<div>
<span *ngIf="checkImageFromVersion(image.filename)">
<mat-icon matTooltip="Ready to install" matTooltipClass="custom-tooltip">check</mat-icon>
</span>
<span *ngIf="!checkImageFromVersion(image.filename)">
<mat-icon matTooltip="Missing" matTooltipClass="custom-tooltip">close</mat-icon>
</span>
<input
type="file"
class="non-visible"
Expand Down Expand Up @@ -499,7 +505,7 @@ <h1 mat-dialog-title>Add new template</h1>
</mat-radio-group>
</div>
<div>
Install required files
Install the required images
<button
mat-icon-button
matTooltip="Refresh list of images"
Expand All @@ -511,9 +517,15 @@ <h1 mat-dialog-title>Add new template</h1>
<mat-list>
<mat-list-item *ngFor="let image of applianceToInstall.images">
<div class="list-item">
<div>
<span>
{{ image.filename }}
</div>
</span>
<span *ngIf="checkImageFromVersion(image.filename)">
<mat-icon matTooltip="Ready to install" matTooltipClass="custom-tooltip">check</mat-icon>
</span>
<span *ngIf="!checkImageFromVersion(image.filename)">
<mat-icon matTooltip="Missing" matTooltipClass="custom-tooltip">close</mat-icon>
</span>
<div>
<input
type="file"
Expand Down

0 comments on commit 84169a2

Please sign in to comment.