Skip to content

Commit 3c87a07

Browse files
fix(table): render empty cells as blank, not em-dash
Empty cells (any column type) showed an em-dash placeholder. Drop it so empty cells render blank — matches what the user expects when nothing's there.
1 parent a48b43f commit 3c87a07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • apps/sim/app/workspace/[workspaceId]/tables/[tableId]/components/table-grid/cells

apps/sim/app/workspace/[workspaceId]/tables/[tableId]/components/table-grid/cells/cell-render.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export function CellRender({ kind, isEditing }: CellRenderProps): React.ReactEle
232232
)
233233

234234
case 'empty':
235-
return <span className='text-[var(--text-tertiary)]'></span>
235+
return null
236236

237237
default: {
238238
// Exhaustiveness guard: TypeScript flags this branch if a new

0 commit comments

Comments
 (0)