fix(front): small fixes

This commit is contained in:
ArneBo 2025-01-15 16:28:04 +01:00
parent a84868e1df
commit bd4093e6bc
4 changed files with 111 additions and 112 deletions

View File

@ -200,7 +200,7 @@ const paginateOptions = computed(() => sortedUniq([12, 25, 50, paginateBy.value]
<i class="bi bi-heartbreak-fill" style="font-size: 100px;" />
<Spacer />
{{ t('components.favorites.List.empty.noFavorites') }}
<Spacer size="40"/>
<Spacer :size="32"/>
<Link
to="/library"
solid

View File

@ -194,7 +194,7 @@ const paginateOptions = computed(() => sortedUniq([12, 30, 50, paginateBy.value]
style="display:flex; flex-wrap:wrap; gap: 32px; margin-top:32px;"
>
<Loader v-if="isLoading"/>
<album-card
<AlbumCard
v-for="album in result.results"
:key="album.id"
:album="album"

View File

@ -14,7 +14,6 @@ import { useStore } from '~/store'
import axios from 'axios'
import TagsSelector from '~/components/library/TagsSelector.vue'
import Pagination from '~/components/ui/Pagination.vue'
import Layout from '~/components/ui/Layout.vue'
import Input from '~/components/ui/Input.vue'

View File

@ -204,7 +204,7 @@ watch(props, fetchData, { immediate: true })
</div>
</div>
</div> -->
<!-- Profile description -->
<!-- TODO: Translate Edit Link -->
<Section no-items
:h1="store.state.auth.username"
:action="{ text:'Edit profile', to:'/settings' }"