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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi there 👋
With version 10.19.1 {% break %} stops the template execution instead of just the for loop.
{% break %}
Example:
{% for i in (1..5) -%} {%- if i == 4 -%} {% break %} {%- else -%} {{ i }} {%- endif -%} {%- endfor %} after
Result with liquidjs:
1 2 3
Result with liquid:
1 2 3 after
The text was updated successfully, but these errors were encountered:
fix: break/continue stops whole template, #783
f5116da
5f1a4cf
chore(release): 10.20.1 [skip ci]
b070594
## [10.20.1](v10.20.0...v10.20.1) (2025-01-04) ### Bug Fixes * break/continue stops whole template, [#783](#783) ([5f1a4cf](5f1a4cf)) * enumerate plain objects in where/where_exp, [#785](#785) ([#788](#788)) ([25ef104](25ef104)) * preserveTimezones support for RFC2822 date, [#784](#784) ([59cf3c0](59cf3c0))
Please try 10.20.1, let me know if there's still any issue.
10.20.1
Sorry, something went wrong.
It fixed the issue, thanks! 🚀
No branches or pull requests
Hi there 👋
With version 10.19.1
{% break %}
stops the template execution instead of just the for loop.Example:
Result with liquidjs:
Result with liquid:
The text was updated successfully, but these errors were encountered: