🪻 distributed transcription service thistle.dunkirk.sh

bug: fix whole transcript loading

dunkirk.sh 49ca65d3 71cec039

verified
Changed files
+7
src
components
+7
src/components/transcription.ts
···
if (response.ok) {
const data = await response.json();
this.jobs = data.jobs;
+
+
// Initialize displayedTranscripts for completed/failed jobs
+
for (const job of this.jobs) {
+
if ((job.status === "completed" || job.status === "failed") && job.transcript) {
+
this.displayedTranscripts.set(job.id, job.transcript);
+
}
+
}
// Don't override serviceAvailable - it's set by checkHealth()
} else if (response.status === 404) {
// Transcription service not available - show empty state