🐛 fix(reactflowUtils.ts): improve error message for empty key in validateNode function
This commit is contained in:
parent
52a8e6eeb5
commit
a6c80a8780
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ export function validateNode(
|
|||
template[t].value !== "")
|
||||
) {
|
||||
if (hasDuplicateKeys(template[t].value)) errors.push(`${type} (${template.display_name || template[t].name}) contains duplicate keys with the same values.`);
|
||||
if (hasEmptyKey(template[t].value)) errors.push(`${type} (${template.display_name || template[t].name}) contains keys with empty values.`);
|
||||
if (hasEmptyKey(template[t].value)) errors.push(`${type} (${template.display_name || template[t].name}) field must not be empty.`);
|
||||
}
|
||||
return errors;
|
||||
}, [] as string[]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue