mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-22 11:17:56 +11:00
Update CommunicationsChat.vue
This commit is contained in:
parent
7954396120
commit
89cee44fda
1 changed files with 6 additions and 2 deletions
|
@ -812,7 +812,7 @@ export default {
|
|||
}
|
||||
},
|
||||
methods: {
|
||||
scrollEvent(e) {
|
||||
async scrollEvent(e) {
|
||||
this.avoidAutoScroll =
|
||||
e.target.scrollTop + e.target.offsetHeight !== e.target.scrollHeight
|
||||
if (
|
||||
|
@ -824,7 +824,11 @@ export default {
|
|||
this.rateLimit = true
|
||||
this.offset += 50
|
||||
this.loadingMessages = true
|
||||
this.getMessages()
|
||||
const element = document.getElementById("message-0")
|
||||
await this.getMessages()
|
||||
if (element) {
|
||||
element.scrollIntoView()
|
||||
}
|
||||
setTimeout(() => {
|
||||
this.rateLimit = false
|
||||
}, 250)
|
||||
|
|
Loading…
Reference in a new issue