From 5dfbf94b0253211d8f0cbca57193b34aec8145fd Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Thu, 11 Feb 2021 23:11:43 +0100 Subject: [PATCH] return to test --- packages/dashboard/src/components/Table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dashboard/src/components/Table.js b/packages/dashboard/src/components/Table.js index 7e678d13..8c52c116 100644 --- a/packages/dashboard/src/components/Table.js +++ b/packages/dashboard/src/components/Table.js @@ -61,7 +61,7 @@ export default function Table({ items, count, headers, actions, offset, setOffse {headers.map(({ key, formatter }) => ( - {(formatter ? formatter(row[key]) : row[key]) || "—"} + {(formatter ? formatter(row[key]) : row[key]) || <>—} ))} {actions.map(({ key, name, action }) => (