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 cd50d529b6
1 changed files with 3 additions and 1 deletions

View File

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