Spaces:
Running
Running
Update flare-ui/src/app/components/chat/realtime-chat.component.html
Browse files
flare-ui/src/app/components/chat/realtime-chat.component.html
CHANGED
@@ -28,11 +28,14 @@
|
|
28 |
</div>
|
29 |
|
30 |
<!-- Transcription Display -->
|
31 |
-
<div class="transcription-area" *ngIf="currentTranscription
|
32 |
-
<div class="transcription-label">
|
33 |
-
|
|
|
|
|
|
|
34 |
</div>
|
35 |
-
|
36 |
<!-- Chat Messages -->
|
37 |
<div class="chat-messages" #scrollContainer>
|
38 |
<div *ngFor="let msg of messages; trackBy: trackByIndex"
|
|
|
28 |
</div>
|
29 |
|
30 |
<!-- Transcription Display -->
|
31 |
+
<div class="transcription-area" *ngIf="currentTranscription || currentState === 'listening'">
|
32 |
+
<div class="transcription-label">
|
33 |
+
<mat-icon class="pulse-icon">mic</mat-icon>
|
34 |
+
<span>Dinleniyor...</span>
|
35 |
+
</div>
|
36 |
+
<div class="transcription-text">{{ currentTranscription || '...' }}</div>
|
37 |
</div>
|
38 |
+
|
39 |
<!-- Chat Messages -->
|
40 |
<div class="chat-messages" #scrollContainer>
|
41 |
<div *ngFor="let msg of messages; trackBy: trackByIndex"
|