fix(databases): execute exact row count fallback for empty tables and tighten table spacing

This commit is contained in:
2026-06-14 14:36:19 -07:00
parent 1668cf1fb4
commit 2cdbadec8c
2 changed files with 49 additions and 3 deletions

View File

@@ -232,7 +232,7 @@ function formatCount(n: number) {
const treeWrap: React.CSSProperties = {
display: "flex",
flexDirection: "column",
gap: 6,
gap: 0,
};
const list: React.CSSProperties = {
listStyle: "none",
@@ -240,14 +240,14 @@ const list: React.CSSProperties = {
padding: 0,
display: "flex",
flexDirection: "column",
gap: 1,
gap: 0,
};
const row: React.CSSProperties = {
display: "flex",
alignItems: "center",
gap: 8,
width: "100%",
padding: "6px 8px 6px 6px",
padding: "4px 8px 4px 6px",
border: "1px solid transparent",
borderRadius: THEME.radiusSm,
cursor: "pointer",