Fix remote content page
This commit is contained in:
parent
cf3bfd3ce4
commit
db051aa27a
|
@ -0,0 +1 @@
|
||||||
|
Fix remote content page (#1655)
|
|
@ -119,7 +119,7 @@ import MixinsTranslation from '@/components/mixins/Translations.vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [MixinsTranslation],
|
mixins: [MixinsTranslation],
|
||||||
props: { library: { type: Object, required: true } },
|
props: { library: { type: Object, default: Null } },
|
||||||
data () {
|
data () {
|
||||||
const d = {
|
const d = {
|
||||||
isLoading: false,
|
isLoading: false,
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
<library-card
|
<library-card
|
||||||
v-for="library in scanResult.results"
|
v-for="library in scanResult.results"
|
||||||
:key="library.fid"
|
:key="library.fid"
|
||||||
:library="library"
|
:initial-library="library"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<template v-if="existingFollows && existingFollows.count > 0">
|
<template v-if="existingFollows && existingFollows.count > 0">
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
<library-card
|
<library-card
|
||||||
v-for="follow in existingFollows.results"
|
v-for="follow in existingFollows.results"
|
||||||
:key="follow.fid"
|
:key="follow.fid"
|
||||||
:library="getLibraryFromFollow(follow)"
|
:initial-library="getLibraryFromFollow(follow)"
|
||||||
@deleted="fetch()"
|
@deleted="fetch()"
|
||||||
@followed="fetch()"
|
@followed="fetch()"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue