Fix chat not scrolling to bottom when messages update.

This commit is contained in:
Paul
2021-08-16 18:59:40 +01:00
parent d13b5e812d
commit 745b03452b
4 changed files with 13 additions and 7 deletions

View File

@@ -72,7 +72,13 @@ export const SimpleRenderer: RendererRoutines = {
});
});
},
edit: noopAsync,
edit: async (renderer) => {
console.log("EDIT!!");
renderer.emitScroll({
type: "StayAtBottom",
smooth: false,
});
},
delete: async (renderer, id) => {
const channel = renderer.channel;
if (!channel) return;