parent
d9ae0666c2
commit
a21541ce4b
|
@ -23,14 +23,17 @@
|
||||||
{{numFollowersDisplay}}
|
{{numFollowersDisplay}}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="account-profile-more-options">
|
<!-- TODO: re-enable this when we support profile editing -->
|
||||||
<IconButton
|
{{#if account && verifyCredentials && account.id !== verifyCredentials.id}}
|
||||||
label="More options"
|
<div class="account-profile-more-options">
|
||||||
href="#fa-bars"
|
<IconButton
|
||||||
muted="true"
|
label="More options"
|
||||||
on:click="onMoreOptionsClick()"
|
href="#fa-bars"
|
||||||
/>
|
muted="true"
|
||||||
</div>
|
on:click="onMoreOptionsClick()"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
<style>
|
<style>
|
||||||
.account-profile-details {
|
.account-profile-details {
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
}
|
}
|
||||||
return relationship && relationship.following
|
return relationship && relationship.following
|
||||||
},
|
},
|
||||||
blocking: (relationship) => relationship.blocking,
|
blocking: (relationship) => relationship && relationship.blocking,
|
||||||
followRequested: (relationship, account) => {
|
followRequested: (relationship, account) => {
|
||||||
return relationship && relationship.requested && account && account.locked
|
return relationship && relationship.requested && account && account.locked
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue