Loading class...
`;
}
if (this.error) {
return html`
${
["uploading", "processing", "transcribing", "selected"].includes(
t.status,
)
? html`
`
: ""
}
${
t.status === "completed" && (t as any).audioUrl && (t as any).vttContent
? html`
`
: ""
}
${t.error_message ? html`
${t.error_message}
` : ""}
`,
)}
`
}