* Set max width on the problems area in status bar and use unique keys so they do not duplicate

* Fix possibly missing media info

* Show full row of items on tablet

* remove debugging logic
This commit is contained in:
Nicolas Mowen
2024-05-18 10:54:46 -06:00
committed by GitHub
parent 1133202cbd
commit 8cddfc27fb
4 changed files with 14 additions and 13 deletions

View File

@@ -10,8 +10,8 @@ type LiveProducerMetadata = {
remote_addr: string;
user_agent: string;
sdp: string;
medias: string[];
receivers: string[];
medias?: string[];
receivers?: string[];
recv: number;
};
@@ -21,8 +21,8 @@ type LiveConsumerMetadata = {
remote_addr: string;
user_agent: string;
sdp: string;
medias: string[];
senders: string[];
medias?: string[];
senders?: string[];
send: number;
};