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
When using same as with a string, it gets rewritten wrong:
{% if a is same as('b') %} {% endif %}
will become:
{% if a is same as(b) %} {% endif %}
(note the missing quote around b
When not inside an if statement it works as expected:
{{ a is same as('b') ? 'foo' : 'bar' }}
The text was updated successfully, but these errors were encountered:
I have the same issue. Used the following as a workaround:
{% if a == 'b' %} {% endif %}
Sorry, something went wrong.
No branches or pull requests
When using same as with a string, it gets rewritten wrong:
will become:
(note the missing quote around b
When not inside an if statement it works as expected:
The text was updated successfully, but these errors were encountered: