fix(editor): Fix parameter input validation (#12532)

This commit is contained in:
Shireen Missi
2025-01-09 12:58:46 +00:00
committed by GitHub
parent 0cdf393743
commit 6711cbcc64
2 changed files with 3 additions and 3 deletions

View File

@@ -365,7 +365,7 @@ const getIssues = computed<string[]>(() => {
if (Array.isArray(displayValue.value)) {
checkValues = checkValues.concat(displayValue.value);
} else {
checkValues = checkValues.concat(displayValue.value?.toString().split(','));
checkValues.push(displayValue.value);
}
}