Skip to content

Commit 2f776fc

Browse files
authored
refactor: update component naming and imports (#160)
1 parent 6d4b696 commit 2f776fc

37 files changed

+40
-42
lines changed

app/components/AsyncBlock.vue renamed to app/components/async/AsyncBlock.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
2-
<BlockLoading v-if="status === 'pending'"/>
3-
<BlockError v-else-if="status === 'error'"/>
2+
<AsyncBlockLoading v-if="status === 'pending'"/>
3+
<AsyncBlockError v-else-if="status === 'error'"/>
44

55
<div v-else>
66
<slot/>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

app/components/credits/CreditsFilters.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import debounce from 'lodash/debounce';
3232
import isEqual from 'lodash/isEqual';
3333
import { FIELD_LABELS, TYPE_REASONS, useCreditsFilters } from '~/composables/useCreditsFilters';
34-
import { buildNodesByKey, renderTreeSelectValue } from '~/utils/tree-select.ts';
34+
import { buildNodesByKey, renderTreeSelectValue } from '~/utils/tree-select';
3535
3636
const { filter, onParamChange, key: creditsFilterKey } = useCreditsFilters();
3737
File renamed without changes.
File renamed without changes.

app/components/AdoptProbe.vue renamed to app/components/gp-dialog/content/AdoptProbe.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@
107107
<!-- inline-block is required so mt-2 is not collapsed -->
108108
<p class="mb-4 mt-2 inline-block text-lg font-bold">Configure the probe</p>
109109
<p>Recreate the container by running the following commands. The new container will be automatically bound to your account.</p>
110-
<StartProbeCommands :adopt="true" :recreate="true"/>
110+
<ProbeStartCommands :adopt="true" :recreate="true"/>
111111
</TabPanel>
112112
<TabPanel value="1">
113113
<p class="mb-4 mt-2 inline-block text-lg font-bold">Join the network</p>
114-
<StartProbe :adopt="true"/>
114+
<GpDialogContentStartProbe :adopt="true"/>
115115
</TabPanel>
116116
</TabPanels>
117117
</Tabs>

0 commit comments

Comments
 (0)