Fix remote content page
This commit is contained in:
parent
83b01c13e8
commit
ec9f8e1611
|
@ -0,0 +1 @@
|
|||
Fix remote content page (#1655)
|
|
@ -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,
|
||||
|
|
|
@ -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()"
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue