Merge pull request #9661 from Budibase/fix/display-column

Fix empty display column on CSV import
This commit is contained in:
Martin McKeaveney 2023-02-12 15:29:05 +00:00 committed by GitHub
commit 6e170e8660
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -105,7 +105,9 @@
title="Create Table" title="Create Table"
confirmText="Create" confirmText="Create"
onConfirm={saveTable} onConfirm={saveTable}
disabled={error || !name || (rows.length && !allValid)} disabled={error ||
!name ||
(rows.length && (!allValid || displayColumn == null))}
> >
<Input <Input
thin thin