typo fixed

This commit is contained in:
mic 2024-07-21 22:50:15 +02:00
parent da4da31e6c
commit b8353f78ce

View file

@ -146,7 +146,7 @@ class MessagesArea extends HTMLElement {
const actionButton = document.createElement('button');
actionButton.textContent = 'Send';
actionButton.addEventListener('click', () => {
alert(this.fullText);
alert(this.fullTextHTML);
});
actionButtons.appendChild(actionButton);
this.messages.appendChild(actionButtons);