mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-15 01:40:46 +02:00
lint and prettier
This commit is contained in:
@@ -7,7 +7,7 @@ export default defineAppConfig({
|
||||
info: 'cyan',
|
||||
warning: 'yellow',
|
||||
error: 'red',
|
||||
neutral: 'zinc'
|
||||
}
|
||||
}
|
||||
})
|
||||
neutral: 'zinc',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
@@ -41,5 +41,4 @@
|
||||
</UMain>
|
||||
</UApp>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
<script setup lang="ts"></script>
|
||||
|
@@ -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" :loading="busy" @click="onAddClick" class="w-fit">Add</UButton>
|
||||
<UButton icon="i-lucide-plus" :loading="busy" class="w-fit" @click="onAddClick">Add</UButton>
|
||||
</div>
|
||||
</template>
|
||||
</UModal>
|
||||
|
@@ -32,7 +32,9 @@
|
||||
<p v-if="title" class="text-3xl">{{ title }}</p>
|
||||
</div>
|
||||
<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" />
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -6,9 +6,9 @@
|
||||
v-if="mangaConnector"
|
||||
:src="mangaConnector?.iconUrl"
|
||||
:class="[
|
||||
'w-full rounded-full outline-2 -outline-offset-1',
|
||||
props.useForDownload ? 'outline-green-500' : 'outline-red-500',
|
||||
]" />
|
||||
'w-full rounded-full outline-2 -outline-offset-1',
|
||||
props.useForDownload ? 'outline-green-500' : 'outline-red-500',
|
||||
]" />
|
||||
<p v-else>{{ mangaConnectorName }}</p>
|
||||
</UTooltip>
|
||||
</NuxtLink>
|
||||
|
Reference in New Issue
Block a user