You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The last argument to a Helper function is an Options object. That object has a params array that holds the arguments to a helper's invocation.
In a template like {{add 5 37}} this array only has one item, namely:
[
Integer (37)
]
The 5 does not appear in the params array, even though it is an argument to the Helper.
Please consider adding the first parameter to the params array, or consider an adding an additional array to the Options object holding the full set of parameters to the Helper function.
The text was updated successfully, but these errors were encountered:
The last argument to a Helper function is an Options object. That object has a
params
array that holds the arguments to a helper's invocation.In a template like
{{add 5 37}}
this array only has one item, namely:The
5
does not appear in theparams
array, even though it is an argument to the Helper.Please consider adding the first parameter to the
params
array, or consider an adding an additional array to theOptions
object holding the full set of parameters to the Helper function.The text was updated successfully, but these errors were encountered: