Skip to content

Commit 85b3662

Browse files
committed
fix: should be undefined.
1 parent c6aae23 commit 85b3662

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions)

src/routes/(console)/project-[region]-[project]/databases/database-[database]/(suggestions)/empty.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1773,7 +1773,7 @@
17731773
}}>
17741774
{#if !column.custom && row}
17751775
{@const rowData = row[column.id]}
1776-
{@const isNullOrUndefined = rowData === null || typeof rowData === 'object'}
1776+
{@const isNullOrUndefined = rowData === null || typeof rowData === 'undefined'}
17771777
<span class="u-trim suggestions-empty-fake-cell">
17781778
{#if isNullOrUndefined}
17791779
<Badge variant="secondary" content="NULL" size="xs" />

0 commit comments

Comments
 (0)