From c68b611ad939bf7dba4f9d0810f2e866c1ca420c Mon Sep 17 00:00:00 2001 From: Palash Gupta Date: Mon, 17 Jul 2023 15:27:37 +0530 Subject: [PATCH] fix: not found is not visible when loading is visible (#3155) --- frontend/src/container/LogsExplorerList/index.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/container/LogsExplorerList/index.tsx b/frontend/src/container/LogsExplorerList/index.tsx index 54ee339527..184e4e73f0 100644 --- a/frontend/src/container/LogsExplorerList/index.tsx +++ b/frontend/src/container/LogsExplorerList/index.tsx @@ -146,12 +146,17 @@ function LogsExplorerList({ isShowPageSize={false} optionsMenuConfig={config} /> + {options.format !== 'table' && ( Event )} - {logs.length === 0 && No logs lines found} + + {!isLoading && logs.length === 0 && ( + No logs lines found + )} + {renderContent} );