diff --git a/qortal-ui-plugins/plugins/core/components/ChatPage.js b/qortal-ui-plugins/plugins/core/components/ChatPage.js
index 297e0bbf..69d18120 100644
--- a/qortal-ui-plugins/plugins/core/components/ChatPage.js
+++ b/qortal-ui-plugins/plugins/core/components/ChatPage.js
@@ -315,7 +315,6 @@ class ChatPage extends LitElement {
}
async processMessages(messages, isInitial) {
- console.log({ messages })
if (isInitial) {
this.messages = messages.map((eachMessage) => {
diff --git a/qortal-ui-plugins/plugins/core/components/ChatScroller.js b/qortal-ui-plugins/plugins/core/components/ChatScroller.js
index bf7be1a3..006d344d 100644
--- a/qortal-ui-plugins/plugins/core/components/ChatScroller.js
+++ b/qortal-ui-plugins/plugins/core/components/ChatScroller.js
@@ -231,7 +231,6 @@ class ChatScroller extends LitElement {
{
- console.log("yo500")
this.shadowRoot.getElementById('downObserver').scrollIntoView({
behavior: 'smooth',
})
@@ -263,7 +262,6 @@ class ChatScroller extends LitElement {
_upObserverhandler(entries) {
if (entries[0].isIntersecting) {
let _scrollElement = entries[0].target.nextElementSibling
- console.log({ _scrollElement })
this._getOldMessage(_scrollElement)
}
}
@@ -315,6 +313,8 @@ class MessageTemplate extends LitElement {
static get properties() {
return {
messageObj: { type: Object },
+ emojiPicker: { attribute: false },
+ escapeHTML: { attribute: false },
hideMessages: { type: Array },
openDialogPrivateMessage: {type: Boolean},
openDialogBlockUser: {type: Boolean},
@@ -542,7 +542,6 @@ class MessageTemplate extends LitElement {
}
render() {
- console.log(this.showBlockAddressIcon)
const hidemsg = this.hideMessages
let avatarImg = ''
@@ -574,12 +573,12 @@ class MessageTemplate extends LitElement {
${avatarImg}
-
${this.emojiPicker.parse(this.escapeHTML(this.messageObj.decodedMessage))}
+
${this.emojiPicker.parse(this.escapeHTML(this.messageObj.decodedMessage))}
this.showPrivateMessageModal()}
.showBlockUserModal=${() => this.showBlockUserModal()}
.showBlockIconFunc=${(props) => this.showBlockIconFunc(props)}