From 9f4cef2f8bc46d31cbdbd0b08fa9d559e763e8ef Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Fri, 18 Nov 2022 17:25:41 +0100 Subject: [PATCH] change(ui) - red count check --- .../app/components/Session_/Player/Controls/Controls.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/app/components/Session_/Player/Controls/Controls.js b/frontend/app/components/Session_/Player/Controls/Controls.js index 27a928b6f..6bba1d0ad 100644 --- a/frontend/app/components/Session_/Player/Controls/Controls.js +++ b/frontend/app/components/Session_/Player/Controls/Controls.js @@ -76,13 +76,13 @@ function getStorageName(type) { inspectorMode: state.inspectorMode, fullscreenDisabled: state.messagesLoading, // logCount: state.logList.length, - logRedCount: state.logRedCount, + logRedCount: state.logMarkedCount, showExceptions: state.exceptionsList.length > 0, - resourceRedCount: state.resourceRedCountNow, // TODO missing state.resourceRedCount - fetchRedCount: state.fetchRedCountNow, + resourceRedCount: state.resourceMarkedCount, + fetchRedCount: state.fetchMarkedCount, showStack: state.stackList.length > 0, stackCount: state.stackList.length, - stackRedCount: state.stackRedCount, + stackRedCount: state.stackMarkedCount, profilesCount: state.profilesList.length, storageCount: selectStorageListNow(state).length, storageType: selectStorageType(state),