hide overflow menu for same-user profile (#136)

Fixes #130
This commit is contained in:
Nolan Lawson 2018-04-15 15:39:54 -07:00 committed by GitHub
parent d9ae0666c2
commit a21541ce4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 9 deletions

View file

@ -23,14 +23,17 @@
{{numFollowersDisplay}}
</span>
</div>
<div class="account-profile-more-options">
<IconButton
label="More options"
href="#fa-bars"
muted="true"
on:click="onMoreOptionsClick()"
/>
</div>
<!-- TODO: re-enable this when we support profile editing -->
{{#if account && verifyCredentials && account.id !== verifyCredentials.id}}
<div class="account-profile-more-options">
<IconButton
label="More options"
href="#fa-bars"
muted="true"
on:click="onMoreOptionsClick()"
/>
</div>
{{/if}}
</div>
<style>
.account-profile-details {

View file

@ -62,7 +62,7 @@
}
return relationship && relationship.following
},
blocking: (relationship) => relationship.blocking,
blocking: (relationship) => relationship && relationship.blocking,
followRequested: (relationship, account) => {
return relationship && relationship.requested && account && account.locked
},