From 0328aa2d111ed41fb69f2fccaa3afb10a9aff31d Mon Sep 17 00:00:00 2001
From: Justin Ferrari <‘justinwesleyferrari@gmail.com’>
Date: Thu, 17 Nov 2022 20:09:09 -0500
Subject: [PATCH] Started bug fixing
---
.../plugins/core/components/ChatPage.js | 77 ++++++++-----------
.../plugins/core/components/ChatScroller.js | 10 +--
2 files changed, 37 insertions(+), 50 deletions(-)
diff --git a/qortal-ui-plugins/plugins/core/components/ChatPage.js b/qortal-ui-plugins/plugins/core/components/ChatPage.js
index 0a6b6cac..d2749d9c 100644
--- a/qortal-ui-plugins/plugins/core/components/ChatPage.js
+++ b/qortal-ui-plugins/plugins/core/components/ChatPage.js
@@ -59,11 +59,11 @@ class ChatPage extends LitElement {
editedMessageObj: { type: Object },
iframeHeight: { type: Number },
chatMessageSize: { type: Number},
- imageFile: {type: Object},
- isUploadingImage: {type: Boolean},
+ imageFile: { type: Object },
+ isUploadingImage: { type: Boolean },
caption: { type: String },
- chatEditor: {type: Object},
- chatEditorNewChat: {type: Object}
+ chatEditor: { type: Object },
+ chatEditorNewChat: { type: Object }
}
}
@@ -144,7 +144,6 @@ class ChatPage extends LitElement {
width: 92%;
}
-
.senderName {
margin: 0;
color: var(--mdc-theme-primary);
@@ -234,8 +233,8 @@ class ChatPage extends LitElement {
overflow: hidden;
justify-content: center;
background: white;
- padding: 5px;
- border-radius: 1px;
+ padding: 5px;
+ border-radius: 1px;
}
.chatbar-caption {
@@ -435,7 +434,6 @@ class ChatPage extends LitElement {
.dialog-container {
position: relative;
display: flex;
- flex-direction: column;
align-items: center;
padding: 0 10px;
gap: 10px;
@@ -523,29 +521,21 @@ class ChatPage extends LitElement {
${this.imageFile && html`
`}
-
-