mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-02-02 17:20:49 +00:00
Add missing checkImageFromVersion() for IOS and IOU
Some checks are pending
Build / build (push) Waiting to run
Some checks are pending
Build / build (push) Waiting to run
This commit is contained in:
parent
2a9ced5cbd
commit
84169a2c1e
@ -170,7 +170,7 @@
|
|||||||
</mat-select>
|
</mat-select>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
Install required files
|
Install the required files
|
||||||
<button
|
<button
|
||||||
mat-icon-button
|
mat-icon-button
|
||||||
matTooltip="Refresh list of images"
|
matTooltip="Refresh list of images"
|
||||||
@ -441,7 +441,7 @@
|
|||||||
</mat-radio-group>
|
</mat-radio-group>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
Install required files
|
Install the required images
|
||||||
<button
|
<button
|
||||||
mat-icon-button
|
mat-icon-button
|
||||||
matTooltip="Refresh list of images"
|
matTooltip="Refresh list of images"
|
||||||
@ -453,10 +453,16 @@
|
|||||||
<mat-list>
|
<mat-list>
|
||||||
<mat-list-item *ngFor="let image of applianceToInstall.images">
|
<mat-list-item *ngFor="let image of applianceToInstall.images">
|
||||||
<div class="list-item">
|
<div class="list-item">
|
||||||
<div>
|
<span>
|
||||||
{{ image.filename }}
|
{{ image.filename }}
|
||||||
</div>
|
</span>
|
||||||
<div>
|
<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
|
<input
|
||||||
type="file"
|
type="file"
|
||||||
class="non-visible"
|
class="non-visible"
|
||||||
@ -499,7 +505,7 @@
|
|||||||
</mat-radio-group>
|
</mat-radio-group>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
Install required files
|
Install the required images
|
||||||
<button
|
<button
|
||||||
mat-icon-button
|
mat-icon-button
|
||||||
matTooltip="Refresh list of images"
|
matTooltip="Refresh list of images"
|
||||||
@ -511,9 +517,15 @@
|
|||||||
<mat-list>
|
<mat-list>
|
||||||
<mat-list-item *ngFor="let image of applianceToInstall.images">
|
<mat-list-item *ngFor="let image of applianceToInstall.images">
|
||||||
<div class="list-item">
|
<div class="list-item">
|
||||||
<div>
|
<span>
|
||||||
{{ image.filename }}
|
{{ 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>
|
<div>
|
||||||
<input
|
<input
|
||||||
type="file"
|
type="file"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user