mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update Profile.vue
This commit is contained in:
parent
a8fe297c2b
commit
4f45108734
1 changed files with 12 additions and 1 deletions
|
@ -356,7 +356,14 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 row mx-0">
|
<div class="col-12 row mx-0">
|
||||||
<div class="col-4"></div>
|
<div class="col-4 text-left mt-2">
|
||||||
|
<span v-if="relationship && relationship.followed_by">
|
||||||
|
<span class="bg-light border border-secondary font-weight-bold small py-1 px-2 text-muted rounded">FOLLOWS YOU</span>
|
||||||
|
</span>
|
||||||
|
<span v-if="profile.is_admin">
|
||||||
|
<span class="bg-light border border-danger font-weight-bold small py-1 px-2 text-danger rounded">ADMIN</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
<div class="col-4 text-center">
|
<div class="col-4 text-center">
|
||||||
<div class="d-block d-md-none">
|
<div class="d-block d-md-none">
|
||||||
<img class="rounded-circle box-shadow" :src="profile.avatar" width="110px" height="110px" style="margin-top:-60px; border: 5px solid #fff">
|
<img class="rounded-circle box-shadow" :src="profile.avatar" width="110px" height="110px" style="margin-top:-60px; border: 5px solid #fff">
|
||||||
|
@ -666,6 +673,10 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
ownerCheck() {
|
ownerCheck() {
|
||||||
|
if($('body').hasClass('loggedIn') == false) {
|
||||||
|
this.owner = false;
|
||||||
|
return;
|
||||||
|
}
|
||||||
this.owner = this.profile.id === this.user.id;
|
this.owner = this.profile.id === this.user.id;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue