Fix remote content page

environments/review-front-1655-3937gf/deployments/8850
Georg Krause 2021-12-29 20:17:44 +01:00
rodzic 83b01c13e8
commit ec9f8e1611
3 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

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

Wyświetl plik

@ -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,

Wyświetl plik

@ -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()"
/>