diff --git a/client/src/views/stream/notes/create.js b/client/src/views/stream/notes/create.js index 66a9903fc5..4ccac6d2f4 100644 --- a/client/src/views/stream/notes/create.js +++ b/client/src/views/stream/notes/create.js @@ -60,8 +60,10 @@ class CreateNoteStreamView extends NoteStreamView { this.messageData['assignee'] = $('') - .attr('href', '#User/view/' + this.assignedUserId) - .text(this.assignedUserName); + .attr('href', `#User/view/${this.assignedUserId}`) + .text(this.assignedUserName) + .attr('data-scope', 'User') + .attr('data-id', this.assignedUserId); let isYou = false;