Fix conditional rendering of empty view

This commit is contained in:
Alex Holliday
2025-01-03 12:09:05 -08:00
parent c6ef46133c
commit 0c608fdc8e

View File

@@ -34,7 +34,6 @@ import { useTheme } from "@emotion/react";
const DataTable = ({ headers, data, config = { emptyView: "No data" } }) => {
const theme = useTheme();
if ((headers?.length ?? 0) === 0) {
return "No data";
}
@@ -58,7 +57,7 @@ const DataTable = ({ headers, data, config = { emptyView: "No data" } }) => {
</TableRow>
</TableHead>
<TableBody>
{(data?.length ?? 0 === 0) ? (
{(data?.length ?? 0) === 0 ? (
<TableRow>
<TableCell
colSpan={headers.length}