Skip to content

Commit

Permalink
fix component imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mantis-toboggan-md committed Jan 3, 2024
1 parent b9d6c46 commit 0d75a66
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
6 changes: 3 additions & 3 deletions pkg/capi/components/CCVariables/Variable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
8 changes: 4 additions & 4 deletions pkg/capi/edit/cluster.x-k8s.io.cluster.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<script lang="ts">
import { defineComponent } from 'vue';
import Tabbed from '@shell/components/Tabbed';
import Tab from '@shell/components/Tabbed/Tab';
import LabeledSelect from '@shell/components/form/LabeledSelect';
import Tabbed from '@shell/components/Tabbed.vue';
import Tab from '@shell/components/Tabbed/Tab.vue';
import LabeledSelect from '@shell/components/form/LabeledSelect.vue';
import LabeledInput from '@components/Form/LabeledInput/LabeledInput.vue';
import { CAPI } from '../types/capi';
import CCVariables from '../components/CCVariables';
import CCVariables from '../components/CCVariables/index.vue';
const TEST_CC_ID = 'default/quickstart-more-variables';
export default defineComponent({
Expand Down

0 comments on commit 0d75a66

Please sign in to comment.