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}
>
);