I try to figure out the situation with twig and angular. When I use == give me false or false when I use "is same as".
The dump after set give me "February"
{% set month = "{[ calendar.month ]}" %}
{{ dump(month) }}
{% if (month == 'February') %}
true
{% else %}
false
{% endif %}
{% if month is same as ('February') %}
true
{% else %}
false
{% endif %}
Is it any solution or I have to choice something different.
Thanks