diff --git a/src/components/widgets/VideoPlayer.vue b/src/components/widgets/VideoPlayer.vue index 1d22cf323..2d2e71258 100644 --- a/src/components/widgets/VideoPlayer.vue +++ b/src/components/widgets/VideoPlayer.vue @@ -24,11 +24,17 @@

Server status: - {{ serverStatus }} + + {{ statusParagraph }} +
+

Stream status: - {{ streamStatus }} + + {{ statusParagraph }} +
+

@@ -206,7 +212,7 @@ const streamStatus = computed(() => { const availableSources = videoStore.availableIceIps if (!availableSources.isEmpty() && !availableSources.find((ip) => videoStore.allowedIceIps.includes(ip))) { return `Stream is coming from IPs [${availableSources.join(', ')}], which are not in the list of allowed sources - [${videoStore.allowedIceIps.join(', ')}]. Please check your configuration.` + [${videoStore.allowedIceIps.join(', ')}].\\n Please check your configuration.` } return videoStore.getStreamData(nameSelectedStream.value)?.webRtcManager.streamStatus ?? 'Unknown.' })