Merge pull request #8345 from Budibase/fix/hbs-non-string-types
Ensure non string types are ignored when searching for HBS blocks
This commit is contained in:
commit
fbabf46902
|
@ -323,6 +323,9 @@ module.exports.doesContainStrings = (template, strings) => {
|
|||
* @return {string[]} The found HBS blocks.
|
||||
*/
|
||||
module.exports.findHBSBlocks = string => {
|
||||
if (!string || typeof string !== "string") {
|
||||
return []
|
||||
}
|
||||
let regexp = new RegExp(FIND_ANY_HBS_REGEX)
|
||||
let matches = string.match(regexp)
|
||||
if (matches == null) {
|
||||
|
|
Loading…
Reference in New Issue