Commit caa41c64 authored by Joel's avatar Joel

fix: error row index

parent dd06d9e0
...@@ -149,7 +149,7 @@ const TextGeneration: FC<IMainProps> = ({ ...@@ -149,7 +149,7 @@ const TextGeneration: FC<IMainProps> = ({
}) })
if (hasMiddleEmptyLine) { if (hasMiddleEmptyLine) {
notify({ type: 'error', message: t('share.generation.errorMsg.emptyLine', { rowIndex: startIndex }) }) notify({ type: 'error', message: t('share.generation.errorMsg.emptyLine', { rowIndex: startIndex + 2 }) })
return false return false
} }
} }
...@@ -189,7 +189,7 @@ const TextGeneration: FC<IMainProps> = ({ ...@@ -189,7 +189,7 @@ const TextGeneration: FC<IMainProps> = ({
}) })
if (errorRowIndex !== 0) { if (errorRowIndex !== 0) {
notify({ type: 'error', message: t('share.generation.errorMsg.invalidLine', { rowIndex: errorRowIndex, varName: requiredVarName }) }) notify({ type: 'error', message: t('share.generation.errorMsg.invalidLine', { rowIndex: errorRowIndex + 1, varName: requiredVarName }) })
return false return false
} }
return true return true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment