Remove connection status from the live room header.
Deploy Ladill Meet / deploy (push) Successful in 1m0s

Drop Connecting/Connected and view-only mode text while keeping the active speaker notification line for everyone.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-02 06:48:37 +00:00
co-authored by Cursor
parent bbf984bc60
commit eadb77dd5b
2 changed files with 2 additions and 5 deletions
-2
View File
@@ -340,13 +340,11 @@ function meetRoom() {
await this.waitForRoomConnected(room);
this.connectionStatus = 'Connected';
this.syncParticipants();
if (this.canPublish) {
await this.enableLocalMedia(room);
} else {
this.connectionStatus = this.audioOnly ? 'Listening' : 'View-only audience mode';
this.isMuted = true;
this.isVideoOff = true;
}
+2 -3
View File
@@ -139,11 +139,10 @@
:class="conferenceStatusClass()"
x-text="conferenceStatusLabel()">{{ $initialConferenceStatus }}</p>
@endif
<p class="hidden text-xs text-slate-400 sm:block" x-text="connectionStatus">Connecting…</p>
<p class="hidden min-h-4 truncate text-xs font-medium leading-4 text-slate-600 sm:block"
<p class="min-h-4 truncate text-xs font-medium leading-4"
:class="activeSpeakerCount() > 0 ? 'text-emerald-400' : 'text-slate-600'"
:title="activeSpeakersMessage()"
x-text="activeSpeakersMessage()">&nbsp;</p>
x-text="activeSpeakersMessage() || '...'"></p>
</div>
<div class="flex shrink-0 items-center gap-2 text-xs text-slate-400">
<button @click.stop="openShare()" data-share-trigger type="button"