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 { ...@@ -1282,8 +1282,8 @@ export default class Notes {
<div class="note-header"> <div class="note-header">
<div class="note-header-info"> <div class="note-header-info">
<a href="/${_.escape(currentUsername)}"> <a href="/${_.escape(currentUsername)}">
<span class="hidden-xs">${_.escape(currentUserFullname)}</span> <span class="hidden-xs">${_.escape(currentUsername)}</span>
<span class="note-headline-light">@${_.escape(currentUsername)}</span> <span class="note-headline-light">${_.escape(currentUsername)}</span>
</a> </a>
</div> </div>
</div> </div>
...@@ -1298,7 +1298,7 @@ export default class Notes { ...@@ -1298,7 +1298,7 @@ export default class Notes {
); );
$tempNote.find('.hidden-xs').text(_.escape(currentUserFullname)); $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; 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