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
I seem to have an issue to process a template like this:
{ "{{ value_a }}": { key: "{{ value_b }} " } }
As far as I could see, the method TRANSFORM.run checks for the type of template, in this case an object. There are no include-keys, so we just loop trough the keys in the template. We can than see that our key is a template, but no #each or #include. So we invoke TRANSFORM.fillout both on the key and the value.
According to me this is a bug. We should invoke TRANSFORM.run on the value in order to check it for being on object / array ... with possible nested templates.
Does it make sense what I am saying?
The text was updated successfully, but these errors were encountered:
I seem to have an issue to process a template like this:
{ "{{ value_a }}": { key: "{{ value_b }} " } }
As far as I could see, the method TRANSFORM.run checks for the type of template, in this case an object. There are no include-keys, so we just loop trough the keys in the template. We can than see that our key is a template, but no #each or #include. So we invoke TRANSFORM.fillout both on the key and the value.
According to me this is a bug. We should invoke TRANSFORM.run on the value in order to check it for being on object / array ... with possible nested templates.
Does it make sense what I am saying?
The text was updated successfully, but these errors were encountered: