Commit d405158d authored by Jose Ivan Vargas's avatar Jose Ivan Vargas

Added missing at sign

parent 094ab8fa
......@@ -1282,8 +1282,8 @@ export default class Notes {
<div class="note-header">
<div class="note-header-info">
<a href="/${_.escape(currentUsername)}">
<span class="hidden-xs">${_.escape(currentUserFullname)}</span>
<span class="note-headline-light">@${_.escape(currentUsername)}</span>
<span class="hidden-xs">${_.escape(currentUsername)}</span>
<span class="note-headline-light">${_.escape(currentUsername)}</span>
</a>
</div>
</div>
......@@ -1298,7 +1298,7 @@ export default class Notes {
);
$tempNote.find('.hidden-xs').text(_.escape(currentUserFullname));
$tempNote.find('.note-headline-light').text(_.escape(currentUsername));
$tempNote.find('.note-headline-light').text(`@${_.escape(currentUsername)}`);
return $tempNote;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment