lint and prettier

This commit is contained in:
2025-10-12 01:02:01 +02:00
parent d933a1b437
commit efd5a9ab34
5 changed files with 12 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ export default defineAppConfig({
info: 'cyan', info: 'cyan',
warning: 'yellow', warning: 'yellow',
error: 'red', error: 'red',
neutral: 'zinc' neutral: 'zinc',
} },
} },
}) });

View File

@@ -41,5 +41,4 @@
</UMain> </UMain>
</UApp> </UApp>
</template> </template>
<script setup lang="ts"> <script setup lang="ts"></script>
</script>

View File

@@ -8,7 +8,7 @@
<UFormField label="Directory Path" required> <UFormField label="Directory Path" required>
<UInput v-model="path" placeholder="Path for the library" class="w-full" :disabled="busy" /> <UInput v-model="path" placeholder="Path for the library" class="w-full" :disabled="busy" />
</UFormField> </UFormField>
<UButton icon="i-lucide-plus" :loading="busy" @click="onAddClick" class="w-fit">Add</UButton> <UButton icon="i-lucide-plus" :loading="busy" class="w-fit" @click="onAddClick">Add</UButton>
</div> </div>
</template> </template>
</UModal> </UModal>

View File

@@ -32,7 +32,9 @@
<p v-if="title" class="text-3xl">{{ title }}</p> <p v-if="title" class="text-3xl">{{ title }}</p>
</div> </div>
<div v-if="manga" class="flex flex-row gap-2"> <div v-if="manga" class="flex flex-row gap-2">
<UButton trailing-icon="i-lucide-merge" :to="`${manga.key}/merge/`" color="secondary" >Merge</UButton> <UButton trailing-icon="i-lucide-merge" :to="`${manga.key}/merge/`" color="secondary"
>Merge</UButton
>
<slot name="actions" /> <slot name="actions" />
</div> </div>
</div> </div>