From 2bdbdd69307cbd356c8b70bdb2e3228954f6bf3c Mon Sep 17 00:00:00 2001 From: Lukas Siatka Date: Mon, 20 Jan 2020 04:53:59 +0100 Subject: [PATCH] Explore: updates explore table container to show a span on 0 series returned --- public/app/features/explore/TableContainer.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/public/app/features/explore/TableContainer.tsx b/public/app/features/explore/TableContainer.tsx index ea5a2425163..247c6c68396 100644 --- a/public/app/features/explore/TableContainer.tsx +++ b/public/app/features/explore/TableContainer.tsx @@ -43,6 +43,13 @@ export class TableContainer extends PureComponent { return ( + {!tableResult?.length && ( +
+
+ 0 series returned +
+
+ )} {tableResult && } );