How to Populate a Text Field When Data Source Is Undefined

Hi @boz01!

Answered this in chat support, but here’s the solution if others are stuck! Indexing into {{transform.value[1]}} when it was null caused an error inside the text component. So we added a null check, before trying to index: {{ transformer.value ? transformer.value['1'] : " " }}

1 Like