diff options
| author | Maxim Filippov <colixer@gmail.com> | 2018-12-13 19:57:11 +0300 |
|---|---|---|
| committer | Maxim Filippov <colixer@gmail.com> | 2018-12-13 19:57:11 +0300 |
| commit | e4a34cc4d4dcd882e8a546813215dcac95e4ceab (patch) | |
| tree | edd39959f1bb84e5958a37ff2d194db597e701b3 /src/components/chat_panel/chat_panel.vue | |
| parent | 70c48a076d7f55c04e858a478d41a663118653d0 (diff) | |
Use 'userProfileLink' to generate user-profile link
Diffstat (limited to 'src/components/chat_panel/chat_panel.vue')
| -rw-r--r-- | src/components/chat_panel/chat_panel.vue | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/components/chat_panel/chat_panel.vue b/src/components/chat_panel/chat_panel.vue index 182ea347..b253342e 100644 --- a/src/components/chat_panel/chat_panel.vue +++ b/src/components/chat_panel/chat_panel.vue @@ -13,8 +13,10 @@ <img :src="message.author.avatar" /> </span> <div class="chat-content"> - <router-link class="chat-name" :to="userProfileLink(message.author)"> - {{message.author.username}} + <router-link + class="chat-name" + :to="userProfileLink(message.author)"> + {{message.author.username}} </router-link> <br> <span class="chat-text"> @@ -67,9 +69,6 @@ overflow-x: hidden; } -.chat-name { -} - .chat-message { display: flex; padding: 0.2em 0.5em |
