aboutsummaryrefslogtreecommitdiff
path: root/src/components/chat_panel
diff options
context:
space:
mode:
authorshpuld <shp@cock.li>2018-12-29 16:25:45 +0200
committershpuld <shp@cock.li>2018-12-29 16:25:45 +0200
commit16c7bd0199717e705697ddcce100cc2141eb0afc (patch)
treef96ed970d6106a4be664201424f859dcce891f33 /src/components/chat_panel
parent747e4090cabfda353e76c9a45def70bef8c297e5 (diff)
parent1555a5fef38dced753c418d736468712ea818975 (diff)
merge develop, fix conflicts, fix logged out bug
Diffstat (limited to 'src/components/chat_panel')
-rw-r--r--src/components/chat_panel/chat_panel.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/chat_panel/chat_panel.js b/src/components/chat_panel/chat_panel.js
index d7238641..bbc9b49f 100644
--- a/src/components/chat_panel/chat_panel.js
+++ b/src/components/chat_panel/chat_panel.js
@@ -23,7 +23,7 @@ const chatPanel = {
this.collapsed = !this.collapsed
},
userProfileLink (user) {
- return generateProfileLink(user.id, user.username)
+ return generateProfileLink(user.id, user.username, this.$store.state.instance.restrictedNicknames)
}
}
}