Fix remote content page

This commit is contained in:
Georg Krause 2021-12-29 20:17:44 +01:00
parent 83b01c13e8
commit ec9f8e1611
3 changed files with 4 additions and 3 deletions

View File

@ -0,0 +1 @@
Fix remote content page (#1655)

View File

@ -119,7 +119,7 @@ import MixinsTranslation from '@/components/mixins/Translations.vue'
export default {
mixins: [MixinsTranslation],
props: { library: { type: Object, required: true } },
props: { library: { type: Object, default: Null } },
data () {
const d = {
isLoading: false,

View File

@ -33,7 +33,7 @@
<library-card
v-for="library in scanResult.results"
:key="library.fid"
:library="library"
:initial-library="library"
/>
</div>
<template v-if="existingFollows && existingFollows.count > 0">
@ -54,7 +54,7 @@
<library-card
v-for="follow in existingFollows.results"
:key="follow.fid"
:library="getLibraryFromFollow(follow)"
:initial-library="getLibraryFromFollow(follow)"
@deleted="fetch()"
@followed="fetch()"
/>