From 037ce6132bed8f4600fad3153bc9c72fdfef153d Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 12 May 2025 10:56:49 +0800 Subject: [PATCH] VM Access Credentials SSH Keys Not Rendering (backport #279) (#281) * Remove unneeded condition (#279) Signed-off-by: Andy Lee (cherry picked from commit 8410f758592221e4ad2bed254a142d82a0b506b5) # Conflicts: # pkg/harvester/edit/kubevirt.io.virtualmachine/VirtualMachineSSHKey.vue * solve conflict Signed-off-by: Andy Lee --------- Signed-off-by: Andy Lee Co-authored-by: Andy Lee --- .../edit/kubevirt.io.virtualmachine/VirtualMachineSSHKey.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkg/harvester/edit/kubevirt.io.virtualmachine/VirtualMachineSSHKey.vue b/pkg/harvester/edit/kubevirt.io.virtualmachine/VirtualMachineSSHKey.vue index 145ab995..72a0ddc7 100644 --- a/pkg/harvester/edit/kubevirt.io.virtualmachine/VirtualMachineSSHKey.vue +++ b/pkg/harvester/edit/kubevirt.io.virtualmachine/VirtualMachineSSHKey.vue @@ -5,7 +5,7 @@ import { clone } from '@shell/utils/object'; import { LabeledInput } from '@components/Form/LabeledInput'; import LabeledSelect from '@shell/components/form/LabeledSelect'; import ModalWithCard from '@shell/components/ModalWithCard'; -import { _VIEW, _EDIT } from '@shell/config/query-params'; +import { _VIEW } from '@shell/config/query-params'; import { NAMESPACE } from '@shell/config/types'; import { HCI } from '../../types'; @@ -88,9 +88,6 @@ export default { }, sshOption() { - if (this.mode === _VIEW || this.mode === _EDIT) { - return []; - } const out = this.$store.getters['harvester/all'](HCI.SSH).map( (O) => { return { label: O.id,