This commit is contained in:
team3
2026-07-04 03:25:02 +02:00
parent c4caf31ed0
commit 2f5d5b9ca1
11 changed files with 176 additions and 18 deletions

View File

@@ -84,6 +84,7 @@ function resetHere(restart) {
}
const qaBusy = ref(false)
const guideRefresh = ref(0) // QA/Repair schreiben auch den Guide-Report → Badge neu laden
async function runQaClick() {
if (qaBusy.value) return
qaBusy.value = true
@@ -92,6 +93,7 @@ async function runQaClick() {
} finally {
qaBusy.value = false
pollBoard()
guideRefresh.value++
}
}
@@ -209,6 +211,7 @@ async function repairClick() {
<GuideBoardSection
:topic="topic"
:format="guideFormat"
:refresh="guideRefresh"
@cancelGuide="(id) => emit('cancelGuide', id)"
@startGuide="(p) => emit('startGuide', p)"
@resetStage="(p) => emit('resetGuideStage', p)"