Merge pull request #9661 from Budibase/fix/display-column
Fix empty display column on CSV import
This commit is contained in:
commit
6e170e8660
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue