mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-11 21:29:50 +02:00
prettier
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
<UFormField label="Directory Path" required>
|
||||
<UInput v-model="path" placeholder="Path for the library" class="w-full" :disabled="busy" />
|
||||
</UFormField>
|
||||
<UButton icon="i-lucide-plus" @click="onAddClick" :loading="busy">Add</UButton>
|
||||
<UButton icon="i-lucide-plus" :loading="busy" @click="onAddClick">Add</UButton>
|
||||
</div>
|
||||
</template>
|
||||
</UModal>
|
||||
|
@@ -7,7 +7,7 @@
|
||||
:title="l.libraryName"
|
||||
:description="l.basePath"
|
||||
orientation="horizontal">
|
||||
<UButton color="warning" @click="deleteLibrary(l)" :loading="busy">Delete</UButton>
|
||||
<UButton color="warning" :loading="busy" @click="deleteLibrary(l)">Delete</UButton>
|
||||
</UPageCard>
|
||||
</UPageList>
|
||||
</template>
|
||||
|
@@ -10,8 +10,8 @@
|
||||
</p>
|
||||
<USkeleton v-else class="text-xl h-20 w-full" />
|
||||
<div v-if="manga" class="flex flex-row gap-1 flex-wrap">
|
||||
<UBadge variant="outline" v-for="author in manga.authors" color="neutral">{{ author.name }}</UBadge>
|
||||
<UBadge variant="outline" v-for="tag in manga.tags">{{ tag }}</UBadge>
|
||||
<UBadge v-for="author in manga.authors" variant="outline" color="neutral">{{ author.name }}</UBadge>
|
||||
<UBadge v-for="tag in manga.tags" variant="outline">{{ tag }}</UBadge>
|
||||
<NuxtLink v-for="link in manga.links" :to="link.url">
|
||||
<UBadge variant="outline" color="warning">{{ link.provider }}</UBadge>
|
||||
</NuxtLink>
|
||||
|
Reference in New Issue
Block a user