diff --git a/src/qqq/components/widgets/tables/DataTable.tsx b/src/qqq/components/widgets/tables/DataTable.tsx
index 9cb3a97..b86a4e1 100644
--- a/src/qqq/components/widgets/tables/DataTable.tsx
+++ b/src/qqq/components/widgets/tables/DataTable.tsx
@@ -156,7 +156,8 @@ function DataTable({
// style: {paddingLeft: `${row.depth * 2}rem`,},
})}
>
- {row.isExpanded ? "expand_less" : "chevron_right"}
+ {/* float this icon to keep it "out of the flow" - in other words, to keep it from making the row taller than it otherwise would be... */}
+ {row.isExpanded ? "expand_less" : "chevron_right"}
) : null,
},
@@ -313,7 +314,7 @@ function DataTable({
{
prepareRow(row);
return (
-
+ 0 ? "#FAFAFA" : "initial")}} key={key} {...row.getRowProps()}>
{row.cells.map((cell: any) => (
cell.column.type !== "hidden" && (