This is an automated email from the ASF dual-hosted git repository.
sureshanaparti pushed a commit to branch 4.19
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.19 by this push:
new 814c8b6a121 differentiate between instalation ISO and attached ISO
(#9146)
814c8b6a121 is described below
commit 814c8b6a12137556ce082a13c8b2a31f021dfc8a
Author: GaOrtiga <[email protected]>
AuthorDate: Fri Jun 28 12:31:22 2024 -0300
differentiate between instalation ISO and attached ISO (#9146)
Co-authored-by: Gabriel <[email protected]>
---
ui/src/components/view/InfoCard.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ui/src/components/view/InfoCard.vue
b/ui/src/components/view/InfoCard.vue
index 53a1f7675eb..6a0329ada8f 100644
--- a/ui/src/components/view/InfoCard.vue
+++ b/ui/src/components/view/InfoCard.vue
@@ -521,7 +521,7 @@
</span>
</div>
<div class="resource-detail-item" v-if="resource.templateid">
- <div class="resource-detail-item__label">{{ $t('label.templatename')
}}</div>
+ <div class="resource-detail-item__label">{{ resource.templateformat
=== 'ISO'? $t('label.iso') : $t('label.templatename') }}</div>
<div class="resource-detail-item__details">
<resource-icon v-if="resource.icon"
:image="getImage(resource.icon.base64image)" size="1x" style="margin-right:
5px"/>
<SaveOutlined v-else />
@@ -529,7 +529,7 @@
</div>
</div>
<div class="resource-detail-item" v-if="resource.isoid">
- <div class="resource-detail-item__label">{{ $t('label.iso') }}</div>
+ <div class="resource-detail-item__label">{{ $t('label.isoname')
}}</div>
<div class="resource-detail-item__details">
<resource-icon v-if="resource.icon"
:image="getImage(resource.icon.base64image)" size="1x" style="margin-right:
5px"/>
<UsbOutlined v-else />