mirror of https://github.com/apache/cloudstack.git
UI: Add missing tooltips on service offering creation (#6376)
* UI: Add missing tooltips on service offering creation * Refactor - use translation * Corrected message for compute only offering tool tip Co-authored-by: Harikrishna Patnala <harikrishna.patnala@gmail.com>
This commit is contained in:
parent
8aca2b67f0
commit
0ab0c35549
|
|
@ -899,6 +899,7 @@
|
|||
"label.diskofferingstrictness": "Disk offering strictness",
|
||||
"label.disksizestrictness": "Disk size strictness",
|
||||
"label.computeonly.offering": "Compute only disk offering",
|
||||
"label.computeonly.offering.tooltip": "Option to specify root disk related information in the compute offering or to directly link a disk offering to the compute offering",
|
||||
"label.edit": "Edit",
|
||||
"label.edit.acl.list": "Edit ACL list",
|
||||
"label.edit.acl.rule": "Edit ACL rule",
|
||||
|
|
|
|||
|
|
@ -340,7 +340,7 @@
|
|||
</a-form-item>
|
||||
<a-form-item name="computeonly" ref="computeonly">
|
||||
<template #label>
|
||||
{{ $t('label.computeonly.offering') }}
|
||||
<tooltip-label :title="$t('label.computeonly.offering')" :tooltip="$t('label.computeonly.offering.tooltip')"/>
|
||||
</template>
|
||||
<a-switch v-model:checked="form.computeonly" :checked="computeonly" @change="val => { computeonly = val }"/>
|
||||
</a-form-item>
|
||||
|
|
@ -562,7 +562,7 @@
|
|||
</span>
|
||||
<a-form-item>
|
||||
<template #label>
|
||||
<tooltip-label :title="$t('label.diskofferingstrictness')"/>
|
||||
<tooltip-label :title="$t('label.diskofferingstrictness')" :tooltip="apiParams.diskofferingstrictness.description"/>
|
||||
</template>
|
||||
<a-switch v-model:checked="form.diskofferingstrictness" :checked="diskofferingstrictness" @change="val => { diskofferingstrictness = val }"/>
|
||||
</a-form-item>
|
||||
|
|
|
|||
Loading…
Reference in New Issue