diff --git a/website/client/components/chat/copyAsTodoModal.vue b/website/client/components/chat/copyAsTodoModal.vue index a3e7649f4b..7e61dd3523 100644 --- a/website/client/components/chat/copyAsTodoModal.vue +++ b/website/client/components/chat/copyAsTodoModal.vue @@ -38,7 +38,7 @@ export default { }, mounted () { this.$root.$on('habitica::copy-as-todo', message => { - const notes = `[${message.user}](${baseUrl}/static/home/#?memberId=${message.uuid}) wrote in [${this.groupName}](${baseUrl}/groups/guild/${this.groupId})`; + const notes = `${message.user} wrote in [${this.groupName}](${baseUrl}/groups/guild/${this.groupId})`; const newTask = { text: message.text, type: 'todo', diff --git a/website/client/components/groups/group.vue b/website/client/components/groups/group.vue index d2e7b1468a..0ed7ce7bda 100644 --- a/website/client/components/groups/group.vue +++ b/website/client/components/groups/group.vue @@ -40,7 +40,7 @@ community-guidelines .row .col-12.hr - chat-message(:chat.sync='group.chat', :group-id='group._id', group-name='group.name') + chat-message(:chat.sync='group.chat', :group-id='group._id', :group-name='group.name') .col-12.col-sm-4.sidebar .row(:class='{"guild-background": !isParty}') .col-12 diff --git a/website/client/components/groups/tavern.vue b/website/client/components/groups/tavern.vue index e77106daf4..93a04a6a02 100644 --- a/website/client/components/groups/tavern.vue +++ b/website/client/components/groups/tavern.vue @@ -24,7 +24,7 @@ .row .hr.col-12 - chat-message(:chat.sync='group.chat', :group-id='group._id', group-name='group.name') + chat-message(:chat.sync='group.chat', :group-id='group._id', :group-name='group.name') .col-12.col-sm-4.sidebar .section