fix(front): small fixes
This commit is contained in:
parent
a84868e1df
commit
bd4093e6bc
|
@ -200,7 +200,7 @@ const paginateOptions = computed(() => sortedUniq([12, 25, 50, paginateBy.value]
|
||||||
<i class="bi bi-heartbreak-fill" style="font-size: 100px;" />
|
<i class="bi bi-heartbreak-fill" style="font-size: 100px;" />
|
||||||
<Spacer />
|
<Spacer />
|
||||||
{{ t('components.favorites.List.empty.noFavorites') }}
|
{{ t('components.favorites.List.empty.noFavorites') }}
|
||||||
<Spacer size="40"/>
|
<Spacer :size="32"/>
|
||||||
<Link
|
<Link
|
||||||
to="/library"
|
to="/library"
|
||||||
solid
|
solid
|
||||||
|
|
|
@ -194,7 +194,7 @@ const paginateOptions = computed(() => sortedUniq([12, 30, 50, paginateBy.value]
|
||||||
style="display:flex; flex-wrap:wrap; gap: 32px; margin-top:32px;"
|
style="display:flex; flex-wrap:wrap; gap: 32px; margin-top:32px;"
|
||||||
>
|
>
|
||||||
<Loader v-if="isLoading"/>
|
<Loader v-if="isLoading"/>
|
||||||
<album-card
|
<AlbumCard
|
||||||
v-for="album in result.results"
|
v-for="album in result.results"
|
||||||
:key="album.id"
|
:key="album.id"
|
||||||
:album="album"
|
:album="album"
|
||||||
|
|
|
@ -14,7 +14,6 @@ import { useStore } from '~/store'
|
||||||
|
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
import TagsSelector from '~/components/library/TagsSelector.vue'
|
|
||||||
import Pagination from '~/components/ui/Pagination.vue'
|
import Pagination from '~/components/ui/Pagination.vue'
|
||||||
import Layout from '~/components/ui/Layout.vue'
|
import Layout from '~/components/ui/Layout.vue'
|
||||||
import Input from '~/components/ui/Input.vue'
|
import Input from '~/components/ui/Input.vue'
|
||||||
|
|
|
@ -204,7 +204,7 @@ watch(props, fetchData, { immediate: true })
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div> -->
|
</div> -->
|
||||||
<!-- Profile description -->
|
<!-- TODO: Translate Edit Link -->
|
||||||
<Section no-items
|
<Section no-items
|
||||||
:h1="store.state.auth.username"
|
:h1="store.state.auth.username"
|
||||||
:action="{ text:'Edit profile', to:'/settings' }"
|
:action="{ text:'Edit profile', to:'/settings' }"
|
||||||
|
|
Loading…
Reference in New Issue