Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Keunes
funkwhale
Commits
ec9f8e16
Commit
ec9f8e16
authored
Dec 29, 2021
by
Georg Krause
Browse files
Fix remote content page
parent
83b01c13
Changes
3
Hide whitespace changes
Inline
Side-by-side
changes/changelog.d/1655.bugfix
0 → 100644
View file @
ec9f8e16
Fix remote content page (#1655)
front/src/views/content/libraries/Form.vue
View file @
ec9f8e16
...
...
@@ -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
,
...
...
front/src/views/content/remote/Home.vue
View file @
ec9f8e16
...
...
@@ -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()"
/>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment