mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
Fixed footer height (it used to collapse if no text)
This commit is contained in:
@@ -57,8 +57,8 @@ export function Dashboard({
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer className="w-full bg-gray-800 text-white text-center py-4 text-2xl">
|
<footer className="w-full bg-gray-800 text-white text-center py-4 text-2xl mt-8 h-32">
|
||||||
{transcriptionText}
|
{transcriptionText}
|
||||||
</footer>
|
</footer>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ const App = () => {
|
|||||||
<Dashboard
|
<Dashboard
|
||||||
isRecording={isRecording}
|
isRecording={isRecording}
|
||||||
onRecord={(recording) => handleRecord(recording)}
|
onRecord={(recording) => handleRecord(recording)}
|
||||||
transcriptionText={serverData.text ?? "..."}
|
transcriptionText={serverData.text ?? "(No transcription yet)"}
|
||||||
finalSummary={serverData.finalSummary}
|
finalSummary={serverData.finalSummary}
|
||||||
topics={serverData.topics ?? []}
|
topics={serverData.topics ?? []}
|
||||||
stream={stream}
|
stream={stream}
|
||||||
|
|||||||
Reference in New Issue
Block a user