Fixing issue discovered by Cypress.

This commit is contained in:
mike12345567 2021-11-25 17:56:50 +00:00
parent 7e97d2ba95
commit 82a0bfa5f5
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
$: valid =
!schema ||
(fields.every(column => schema[column].success) &&
Object.keys(schema).length > 0)
(!hasValidated || Object.keys(schema).length > 0))
$: dataImport = {
valid,
schema: buildTableSchema(schema),