fix: keybind issue + view moderation page on final step (#3977)

* fix: keybind issue + view moderation page on final step

* fix: go to moderation page on generate message thing
This commit is contained in:
IMB11
2025-07-12 22:48:53 +01:00
committed by GitHub
parent a945e9b005
commit 6fb125cf0f
2 changed files with 10 additions and 2 deletions

View File

@@ -99,7 +99,13 @@ export function handleKeybind(
ctx: ModerationContext,
keybinds: KeybindListener[],
): boolean {
if (event.target instanceof HTMLInputElement || event.target instanceof HTMLTextAreaElement) {
if (
event.target instanceof HTMLInputElement ||
event.target instanceof HTMLTextAreaElement ||
(event.target as HTMLElement)?.closest('.cm-editor') ||
(event.target as HTMLElement)?.classList?.contains('cm-content') ||
(event.target as HTMLElement)?.classList?.contains('cm-line')
) {
return false
}