mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-06 01:25:31 +00:00
improved following infos on profile
This commit is contained in:
parent
1735767cce
commit
a4272d8805
@ -43,14 +43,16 @@
|
|||||||
<ds-space/>
|
<ds-space/>
|
||||||
<h2 style="text-align: center; margin-bottom: 10px;">Netzwerk</h2>
|
<h2 style="text-align: center; margin-bottom: 10px;">Netzwerk</h2>
|
||||||
<ds-card style="position: relative; height: auto;">
|
<ds-card style="position: relative; height: auto;">
|
||||||
<ds-space margin="x-small">
|
<ds-space
|
||||||
|
v-if="user.following && user.following.length"
|
||||||
|
margin="x-small">
|
||||||
<ds-text
|
<ds-text
|
||||||
tag="h5"
|
tag="h5"
|
||||||
color="soft">
|
color="soft">
|
||||||
Wem folgt {{ user.name | truncate(15) }}?
|
Wem folgt {{ user.name | truncate(15) }}?
|
||||||
</ds-text>
|
</ds-text>
|
||||||
</ds-space>
|
</ds-space>
|
||||||
<template v-if="user.following">
|
<template v-if="user.following && user.following.length">
|
||||||
<ds-space
|
<ds-space
|
||||||
v-for="follow in user.following"
|
v-for="follow in user.following"
|
||||||
:key="follow.id"
|
:key="follow.id"
|
||||||
@ -66,14 +68,16 @@
|
|||||||
</ds-card>
|
</ds-card>
|
||||||
<ds-space/>
|
<ds-space/>
|
||||||
<ds-card style="position: relative; height: auto;">
|
<ds-card style="position: relative; height: auto;">
|
||||||
<ds-space margin="x-small">
|
<ds-space
|
||||||
|
v-if="user.followedBy && user.followedBy.length"
|
||||||
|
margin="x-small">
|
||||||
<ds-text
|
<ds-text
|
||||||
tag="h5"
|
tag="h5"
|
||||||
color="soft">
|
color="soft">
|
||||||
Wer folgt {{ user.name | truncate(15) }}?
|
Wer folgt {{ user.name | truncate(15) }}?
|
||||||
</ds-text>
|
</ds-text>
|
||||||
</ds-space>
|
</ds-space>
|
||||||
<template v-if="user.followedBy">
|
<template v-if="user.followedBy && user.followedBy.length">
|
||||||
<ds-space
|
<ds-space
|
||||||
v-for="follow in user.followedBy"
|
v-for="follow in user.followedBy"
|
||||||
:key="follow.id"
|
:key="follow.id"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user