I have a issue with portal liquid templates
{% if dcpfeed.results.entities | size==0 %}
{% assign regcost = 0 %}
{% elsif dcpfeed.results.entities | size==1 %}
{% assign regcost = 70 %}
{% elsif dcpfeed.results.entities | size==2 %}
{% assign regcost = 80 %}
{% endif %}
when i try to access {{dcpfeed.results.entities | size}} it is giving me 1
but regcost is always 0
is there any issue with my code?