Settings move API Url to top, hide settings when not connected

This commit is contained in:
2025-10-16 00:16:02 +02:00
parent 35ca5b9550
commit 20c9824ce1
3 changed files with 17 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
<template>
<UPageList class="gap-2">
<div class="flex flex-row flex-wrap">
<UPageCard
v-for="l in fileLibraries"
:key="l.key"
@@ -8,9 +8,9 @@
:title="l.libraryName"
:description="l.basePath"
orientation="horizontal">
<UButton color="warning" :loading="busy" @click="deleteLibrary(l)">Delete</UButton>
<UButton color="warning" :loading="busy" class="w-fit justify-self-end" @click="deleteLibrary(l)">Delete</UButton>
</UPageCard>
</UPageList>
</div>
</template>
<script setup lang="ts">