From fbd3169e7d9497a65376a7f071f2ea0cd48efa16 Mon Sep 17 00:00:00 2001 From: Peeter Normak Date: Tue, 2 May 2023 22:27:25 +0300 Subject: [PATCH] Do not show the loader during recordings api call Showing the loader during the recordings API call will rerender the recordings list and rerenders the video player --- web/src/routes/Recording.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/routes/Recording.jsx b/web/src/routes/Recording.jsx index 9a40b674c..85f3c1fbc 100644 --- a/web/src/routes/Recording.jsx +++ b/web/src/routes/Recording.jsx @@ -114,7 +114,7 @@ export default function Recording({ camera, date, hour = '00', minute = '00', se } }, [seekSeconds, playlistIndex]); - if (!recordingsSummary || !recordings || !config) { + if (!recordingsSummary || !config) { return ; }