htmling
htmling copied to clipboard
Binary && condition not running as expected
The following code is not running as expected
Input: type = "transaction" , someproperty = "something"
Code: <template if="{{type=== 'Transaction' && someproperty}}">...</template>
However, the following code works
Code: <template if="{{type=== 'Transaction' }}"><template if="{{someproperty}}">...</template></template>