From 74675f198d2a813a80e9fcc5b4b7cd8945b90bb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Leszczyk?= Date: Tue, 8 Mar 2022 09:37:46 +0100 Subject: [PATCH] fix(dashboard-v2): bullet-proof activity table --- .../dashboard-v2/src/components/LatestActivity/ActivityTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dashboard-v2/src/components/LatestActivity/ActivityTable.js b/packages/dashboard-v2/src/components/LatestActivity/ActivityTable.js index e8d86a6c..345a2daa 100644 --- a/packages/dashboard-v2/src/components/LatestActivity/ActivityTable.js +++ b/packages/dashboard-v2/src/components/LatestActivity/ActivityTable.js @@ -16,7 +16,7 @@ export default function ActivityTable({ type }) { {/* TODO: proper error message */} {!data && !error && } {!data && error &&

An error occurred while loading this data.

} - {data &&

No files found.

} + {data && !error &&

No files found.

} ); }