Revert "Updates sidebar on dashboard"

This reverts commit 6186d14593.
This commit is contained in:
Sojan 2020-02-11 19:34:42 +05:30
parent 6186d14593
commit 2023d5d42b
20 changed files with 112 additions and 394 deletions

View file

@ -8,7 +8,7 @@
:username="chat.meta.sender.name"
/>
<div class="user--profile__meta">
<h3 class="user--name text-truncate">
<h3 v-if="!isContactPanelOpen" class="user--name text-truncate">
{{ chat.meta.sender.name }}
</h3>
<button
@ -93,9 +93,7 @@ export default {
];
},
viewProfileButtonLabel() {
return `${
this.isContactPanelOpen ? 'Close' : 'Open'
} Conversation Details`;
return `${this.isContactPanelOpen ? 'Hide' : 'View'} Profile`;
},
},