force display column to be chosen when uploading csv
This commit is contained in:
parent
eaf9d2f74f
commit
cd8e007da8
|
@ -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