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

@@ -511,7 +511,7 @@ interface MessagePart {
function handleKeybinds(event: KeyboardEvent) {
const focusedActionIndex = ref<number | null>(null);
return handleKeybind(
handleKeybind(
event,
{
project: props.project,
@@ -1005,6 +1005,8 @@ async function generateMessage() {
loadingMessage.value = true;
router.push(`/${props.project.project_type}/${props.project.slug}/moderation`);
try {
const baseMessage = await assembleFullMessage();
let fullMessage = baseMessage;