fix: scroll bug when switching chat channel (isChannel)

This commit is contained in:
zeemah
2020-11-30 03:34:14 +00:00
parent 76dd66bd0f
commit f77b765d97

View File

@@ -397,6 +397,9 @@ export default Vue.extend({
this.modeIdx = (this.modeIdx + 1) % this.modes.length;
} while (this.modes[this.modeIdx].hidden);
}
const buf = document.getElementsByClassName('chat-messages')[0];
setTimeout(() => buf.scrollTop = buf.scrollHeight, 0);
}
this.resize();