We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It appears that if you use spaces around the = in a condition it silently fails. If you use a renderer without () it also fails.
Example that do not seem to work ${myobject.name = 'abc'} ${myobject.name;render='abc'}
These work correctly ${myobject.name='abc'} ${myobject.name;render()='abc'}
The text was updated successfully, but these errors were encountered:
I can reproduce this in current head with the following cases, already shown by tests added in commit f6cf67e:
Thanks for reporting, will fix ASAP
Sorry, something went wrong.
Fixed in Commit 43803eb
DJCordhose
No branches or pull requests
It appears that if you use spaces around the = in a condition it silently fails.
If you use a renderer without () it also fails.
Example that do not seem to work
${myobject.name = 'abc'}
${myobject.name;render='abc'}
These work correctly
${myobject.name='abc'}
${myobject.name;render()='abc'}
The text was updated successfully, but these errors were encountered: