From 3a88ef3be216d2837623fa7c04f1fa1a0291383c Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Fri, 16 Sep 2022 16:19:09 +0300 Subject: [PATCH] Pull request: 4854 return to detailed view on screen resize Updates #4854 Squashed commit of the following: commit b580b5e26d83db3291dee5714d9580a1e07253b5 Author: Ildar Kamalov Date: Fri Sep 16 15:33:04 2022 +0300 client: return to detailed view on screen resize --- client/src/components/Logs/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/components/Logs/index.js b/client/src/components/Logs/index.js index abbc3af7..2531c55c 100644 --- a/client/src/components/Logs/index.js +++ b/client/src/components/Logs/index.js @@ -104,6 +104,8 @@ const Logs = () => { setIsSmallScreen(e.matches); if (e.matches) { dispatch(toggleDetailedLogs(false)); + } else { + dispatch(toggleDetailedLogs(true)); } };