Switching variable name to make it more obvious value isn't being set directly.

This commit is contained in:
mike12345567 2022-08-04 12:56:08 +01:00
parent b7f63aed03
commit 26c3f8a486
1 changed files with 4 additions and 4 deletions

View File

@ -70,17 +70,17 @@
// Adds a JS/HBS helper to the expression // Adds a JS/HBS helper to the expression
const addHelper = (helper, js) => { const addHelper = (helper, js) => {
let value let tempVal
const pos = getCaretPosition() const pos = getCaretPosition()
if (js) { if (js) {
const decoded = decodeJSBinding(jsValue) const decoded = decodeJSBinding(jsValue)
value = jsValue = encodeJSBinding( tempVal = jsValue = encodeJSBinding(
addJSBinding(decoded, pos, helper.text, { helper: true }) addJSBinding(decoded, pos, helper.text, { helper: true })
) )
} else { } else {
value = hbsValue = addHBSBinding(hbsValue, pos, helper.text) tempVal = hbsValue = addHBSBinding(hbsValue, pos, helper.text)
} }
updateValue(value) updateValue(tempVal)
} }
// Adds a data binding to the expression // Adds a data binding to the expression