← Back to all classes
${
this.filteredJobs.length === 0 && !this.isLoading
? html`
${this.searchQuery ? "No matching transcriptions" : "No transcriptions yet"}
${this.searchQuery ? "Try a different search term" : "Upload an audio file to get started!"}
`
: html`
${this.filteredJobs.map(
(job) => html`
${
job.status === "uploading" ||
job.status === "processing" ||
job.status === "transcribing"
? html`
`
: ""
}
${
job.status === "completed" && job.audioUrl && job.vttContent
? html`
`
: ""
}
`,
)}
`
}
`;
}
}