1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00

Fixing two issues, not verifying a file has been uploaded for import app and fixing HBS visual issue where handlebars statement could get screwed up.

This commit is contained in:
mike12345567 2021-10-20 18:37:07 +01:00
parent 66553f335c
commit 56274019d6
2 changed files with 7 additions and 1 deletions

View file

@ -472,7 +472,7 @@ function bindingReplacement(bindableProperties, textWithBindings, convertTo) {
idx = searchString.indexOf(from)
if (idx !== -1) {
let end = idx + from.length,
searchReplace = Array(binding[convertTo].length).join("*")
searchReplace = Array(binding[convertTo].length + 1).join("*")
// blank out parts of the search string
searchString = replaceBetween(searchString, idx, end, searchReplace)
newBoundValue = replaceBetween(

View file

@ -66,6 +66,11 @@
const checkValidity = async (values, validator) => {
const obj = object().shape(validator)
Object.keys(validator).forEach(key => ($errors[key] = null))
if (template?.fromFile && values.file == null) {
valid = false
return
}
try {
await obj.validate(values, { abortEarly: false })
} catch (validationErrors) {
@ -73,6 +78,7 @@
$errors[error.path] = capitalise(error.message)
})
}
valid = await obj.isValid(values)
}