mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
www: fixes login on displaying recorder according to waveform loading
This commit is contained in:
@@ -54,7 +54,7 @@ export default function TranscriptDetails(details: TranscriptDetails) {
|
||||
|
||||
return (
|
||||
<>
|
||||
{transcript?.loading === true || topics?.loading == true ? (
|
||||
{transcript?.loading === true || topics?.loading === true ? (
|
||||
<Modal title="Loading" text={"Loading transcript..."} />
|
||||
) : (
|
||||
<>
|
||||
@@ -62,7 +62,7 @@ export default function TranscriptDetails(details: TranscriptDetails) {
|
||||
{transcript?.response?.title && (
|
||||
<TranscriptTitle title={transcript.response.title} />
|
||||
)}
|
||||
{waveform?.loading == true && (
|
||||
{waveform?.loading === false && (
|
||||
<Recorder
|
||||
topics={topics?.topics || []}
|
||||
useActiveTopic={useActiveTopic}
|
||||
|
||||
Reference in New Issue
Block a user