From 5158e5e24f631ee3a1eb3db7c2efc52297166c96 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Sat, 19 Nov 2022 07:13:49 -0700 Subject: [PATCH] Fix cross references --- web/src/routes/System.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/routes/System.jsx b/web/src/routes/System.jsx index b6fb1fe61..d2345d3a6 100644 --- a/web/src/routes/System.jsx +++ b/web/src/routes/System.jsx @@ -65,7 +65,7 @@ export default function System() { if (response.status === 200) { setState({ ...state, showFfprobe: true, ffprobe: JSON.stringify(response.data, null, 2) }); } else { - setState({ ...state, ffprobe: 'There was an error getting the ffprobe output.' }); + setState({ ...state, showFfprobe: true, ffprobe: 'There was an error getting the ffprobe output.' }); } }; @@ -124,13 +124,13 @@ export default function System() {
Vainfo Output - {state.ffprobe != '' ?

{state.vainfo}

: } + {state.vainfo != '' ?

{state.vainfo}

: }
-