Show alternative value if cell is empty

I fixed it actually. Should have been
{{ self === null ? currentRow.product_image : currentRow.src }}
and as you mentioned
{{ self === null ? currentRow.product_image : self }}
works too. :slight_smile:
Cheers!