1
0
Fork 0
mirror of synced 2024-10-02 18:16:29 +13:00

Merge pull request #2738 from Budibase/fix-regex-binding-replacement

Fix regex binding replacement issue due to not being escaped
This commit is contained in:
Andrew Kingston 2021-09-27 11:31:44 +01:00 committed by GitHub
commit 85f40a1e0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -443,10 +443,9 @@ function bindingReplacement(bindableProperties, textWithBindings, convertTo) {
for (let from of convertFromProps) {
if (shouldReplaceBinding(newBoundValue, from, convertTo)) {
const binding = bindableProperties.find(el => el[convertFrom] === from)
newBoundValue = newBoundValue.replace(
new RegExp(from, "gi"),
binding[convertTo]
)
while (newBoundValue.includes(from)) {
newBoundValue = newBoundValue.replace(from, binding[convertTo])
}
}
}
result = result.replace(boundValue, newBoundValue)