align CPU pinning checkbox position in cloud template

(cherry picked from commit 59bf735f8b8d60e1eee02a790e8be1ced65dbff7)
This commit is contained in:
andy.lee 2024-11-04 15:55:26 +08:00
parent 5c96e90d58
commit 50bdd53186
No known key found for this signature in database
GPG Key ID: 10911689462678C7
2 changed files with 5 additions and 1 deletions

View File

@ -434,7 +434,7 @@ export default {
<div class="spacer"></div>
<Checkbox
v-if="value.cpuPinningFeatureEnabled"
v-model="cpuPinning"
v-model:value="cpuPinning"
class="check"
type="checkbox"
tooltip-key="harvester.virtualMachine.cpuPinning.tooltip"

View File

@ -210,6 +210,10 @@ export default class HciVmTemplateVersion extends HarvesterResource {
await templateResource.save();
}
get cpuPinningFeatureEnabled() {
return this.$rootGetters['harvester-common/getFeatureEnabled']('cpuPinning');
}
get defaultVersion() {
const templates = this.$rootGetters['harvester/all'](HCI.VM_TEMPLATE);
const template = templates.find((T) => this.templateId === T.id);