From 0d75a6659488dd7a395aa11627b114729b6f459c Mon Sep 17 00:00:00 2001 From: Nancy Butler <42977925+mantis-toboggan-md@users.noreply.github.com> Date: Wed, 3 Jan 2024 10:47:50 -0800 Subject: [PATCH] fix component imports --- .vscode/settings.json | 1 + pkg/capi/components/CCVariables/Variable.vue | 6 +++--- pkg/capi/edit/cluster.x-k8s.io.cluster.vue | 8 ++++---- 3 files changed, 8 insertions(+), 7 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/pkg/capi/components/CCVariables/Variable.vue b/pkg/capi/components/CCVariables/Variable.vue index c639557..f485411 100644 --- a/pkg/capi/components/CCVariables/Variable.vue +++ b/pkg/capi/components/CCVariables/Variable.vue @@ -3,9 +3,9 @@ import { defineComponent } from 'vue'; import type { PropType } from 'vue'; import LabeledInput from '@components/Form/LabeledInput/LabeledInput.vue'; import Checkbox from '@components/Form/Checkbox/Checkbox.vue'; -import KeyValue from '@shell/components/form/KeyValue'; -import ArrayList from '@shell/components/form/ArrayList'; -import LabeledSelect from '@shell/components/form/LabeledSelect'; +import KeyValue from '@shell/components/form/KeyValue.vue'; +import ArrayList from '@shell/components/form/ArrayList.vue'; +import LabeledSelect from '@shell/components/form/LabeledSelect.vue'; import type { ClusterClassVariable } from '../../types/clusterClass'; import { isDefined, openAPIV3SchemaValidators } from '../../util/validators'; diff --git a/pkg/capi/edit/cluster.x-k8s.io.cluster.vue b/pkg/capi/edit/cluster.x-k8s.io.cluster.vue index ed3158f..e04d0cf 100644 --- a/pkg/capi/edit/cluster.x-k8s.io.cluster.vue +++ b/pkg/capi/edit/cluster.x-k8s.io.cluster.vue @@ -1,12 +1,12 @@