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
{{ message }}
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
If a variable is assigned within an if statement, the value of that assign is not kept outside of that block.
{% assign test1 = 'maybe' %}
{% if test1 == 'maybe' %}
{% assign test1 = 'yes' %}
{% endif %}
{{ test1 }}
The text was updated successfully, but these errors were encountered: