Skip to content

Commit a58a3be

Browse files
committed
add NA in absence of value
1 parent 7386be2 commit a58a3be

File tree

1 file changed

+1
-1
lines changed
  • app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/publish

1 file changed

+1
-1
lines changed

app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/publish/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ const Page = () => {
328328
</Text>
329329
<Text variant="bodyMd" className="lg:basis-4/5">
330330
{' '}
331-
{item.value}
331+
{item.value === '' ? 'NA' : item.value}
332332
</Text>
333333
</div>
334334
))}

0 commit comments

Comments
 (0)