Skip to content

Commit

Permalink
[mirotalkc2c] - fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpejic85 committed Oct 13, 2024
1 parent 2466ad5 commit c29016a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/js/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -1550,7 +1550,7 @@ function appendMessage(name, msg) {
const messageClass = name === peerName ? 'sent' : 'received';
div.className = `msg ${messageClass}`;
span.className = 'from';
span.innerText = name + ' ' + time;
span.innerText = `${name} ${time}`;
p.className = 'text';
p.innerText = msg;
div.appendChild(span);
Expand Down

0 comments on commit c29016a

Please sign in to comment.