force display column to be chosen when uploading csv

This commit is contained in:
Martin McKeaveney 2023-02-11 01:07:20 +00:00
parent eaf9d2f74f
commit cd8e007da8
1 changed files with 4 additions and 1 deletions

View File

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