Conditions template from Singles. Not true Not true either! But this is true! Not touched Ternary expression without then case: {ternaryTrue ?: ternaryFalse} Negated ternary expression without then case: {!checkTernary ?: ternaryFalse} Standard ternary expression: {checkTernary ? ternaryTrue : ternaryFalse} Negated ternary expression: {!checkTernary ? ternaryTrue : ternaryFalse} Ternary expression with dotted variable paths: {asArray.nested.true ? asArray.nested.then : asArray.nested.else} Ternary expression with dotted variable paths without then case: {asArray.nested.then ?: asArray.nested.else}