Skip to content

Commit a02a8de

Browse files
Clarify VMware import conversion storage option
1 parent 5893ba5 commit a02a8de

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

ui/public/locales/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3852,7 +3852,8 @@
38523852
"message.select.nic.network": "Please select a Network for NIC",
38533853
"message.select.security.groups": "Please select security group(s) for your new Instance.",
38543854
"message.select.start.date.and.time": "Select a start date & time.",
3855-
"message.select.temporary.storage.instance.conversion": "(Optional) Select a staging storage for the converted disks",
3855+
"message.select.temporary.storage.instance.conversion": "(Optional) Select temporary conversion storage",
3856+
"message.select.temporary.storage.instance.conversion.tooltip": "Where virt-v2v temporarily writes converted disks before import to the destination storage pool.",
38563857
"message.select.volume.to.continue": "Please select a volume to continue.",
38573858
"message.select.vm.to.continue": "Please select an Instance to continue.",
38583859
"message.select.zone.description": "Select type of Zone basic/advanced.",

ui/src/components/CheckBoxSelectPair.vue

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
:disabled="forExternalNetProvider"
2525
@change="handleCheckChange">
2626
{{ checkBoxLabel }}
27+
<a-tooltip v-if="checkBoxTooltip" :title="checkBoxTooltip">
28+
<info-circle-outlined class="tooltip-icon" />
29+
</a-tooltip>
2730
</a-checkbox>
2831
</a-col>
2932
<a-col :md="24" :lg="layout === 'horizontal' ? 12 : 24">
@@ -70,6 +73,10 @@ export default {
7073
type: String,
7174
required: true
7275
},
76+
checkBoxTooltip: {
77+
type: String,
78+
default: null
79+
},
7380
defaultCheckBoxValue: {
7481
type: Boolean,
7582
default: false
@@ -166,4 +173,9 @@ export default {
166173
.ant-list-split .ant-list-item div {
167174
width: 100%;
168175
}
176+
177+
.tooltip-icon {
178+
color: rgba(0,0,0,.45);
179+
margin-left: 2px;
180+
}
169181
</style>

ui/src/views/tools/ImportUnmanagedInstance.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@
196196
:resourceKey="cluster.id"
197197
:selectOptions="storageOptionsForConversion"
198198
:checkBoxLabel="switches.forceConvertToPool ? $t('message.select.destination.storage.instance.conversion') : $t('message.select.temporary.storage.instance.conversion')"
199+
:checkBoxTooltip="switches.forceConvertToPool ? null : $t('message.select.temporary.storage.instance.conversion.tooltip')"
199200
:defaultCheckBoxValue="switches.forceConvertToPool"
200201
:reversed="false"
201202
@handle-checkselectpair-change="updateSelectedStorageOptionForConversion"

0 commit comments

Comments
 (0)