force display column to be chosen when uploading csv
This commit is contained in:
parent
c721bbc60b
commit
c36aa62a0d
|
@ -105,7 +105,10 @@
|
||||||
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