Compare commits
2 commits
develop
...
fix/click-
Author | SHA1 | Date | |
---|---|---|---|
|
56b7cf1a4e | ||
|
9b1096ef46 |
1 changed files with 19 additions and 6 deletions
|
@ -11,7 +11,14 @@
|
||||||
/>
|
/>
|
||||||
<div class="user--profile__meta">
|
<div class="user--profile__meta">
|
||||||
<h3 class="user--name text-truncate">
|
<h3 class="user--name text-truncate">
|
||||||
<span class="margin-right-smaller">{{ currentContact.name }}</span>
|
<a
|
||||||
|
:href="contactProfileLink"
|
||||||
|
class="margin-right-smaller text-capitalize button secondary large clear link user-name"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener nofollow noreferrer"
|
||||||
|
>
|
||||||
|
{{ currentContact.name }}
|
||||||
|
</a>
|
||||||
<fluent-icon
|
<fluent-icon
|
||||||
v-if="!isHMACVerified"
|
v-if="!isHMACVerified"
|
||||||
v-tooltip="$t('CONVERSATION.UNVERIFIED_SESSION')"
|
v-tooltip="$t('CONVERSATION.UNVERIFIED_SESSION')"
|
||||||
|
@ -145,6 +152,9 @@ export default {
|
||||||
const { inbox_id: inboxId } = this.chat;
|
const { inbox_id: inboxId } = this.chat;
|
||||||
return this.$store.getters['inboxes/getInbox'](inboxId);
|
return this.$store.getters['inboxes/getInbox'](inboxId);
|
||||||
},
|
},
|
||||||
|
contactProfileLink() {
|
||||||
|
return `/app/accounts/${this.$route.params.accountId}/contacts/${this.chat.meta.sender.id}`;
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -182,12 +192,15 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
.user--name {
|
.user--name {
|
||||||
display: inline-block;
|
display: inline-flex;
|
||||||
font-size: var(--font-size-medium);
|
margin-bottom: var(--space-micro);
|
||||||
line-height: 1.3;
|
|
||||||
margin: 0;
|
|
||||||
text-transform: capitalize;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button.secondary.clear.user-name {
|
||||||
|
font-weight: var(--font-weight-medium);
|
||||||
|
color: var(--s-900);
|
||||||
}
|
}
|
||||||
|
|
||||||
.conversation--header--actions {
|
.conversation--header--actions {
|
||||||
|
|
Loading…
Reference in a new issue