If a text property exists, I want to display an attribution link; if it is empty or undefined, display nothing.
if (relatedurl)
{section {
content {
attribution-link {
label {
template ("Related content: ")
}
url ("#{value(this.relatedurl)}")
}
}
}
This is displaying as empty while the same code without the if is displaying the attribution link properly.How do I formulate the test?