Skip to content

Commit dfb89ce

Browse files
committed
refactor: rename components and remove component imports
1 parent d8202b8 commit dfb89ce

33 files changed

+29
-39
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.
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>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<p>To join the Globalping probe network, all you have to do is run our container.</p>
3-
<StartProbeCommands class="my-4" :adopt="props.adopt"/>
3+
<ProbeStartCommands class="my-4" :adopt="props.adopt"/>
44
<p>Once the container starts, you become part of the global community that powers the Globalping Platform. The container works on both x86 and ARM architectures.</p>
55
</template>
66

0 commit comments

Comments
 (0)