I have a web mapping application that uses and Arcade expression for pop-ups. The expression basically looks like this:
if (
($feature.Problem == 'CP-CHILD PROTECTION') ||
($feature.Problem == 'RUN-RUNAWAY') ||
($feature.Problem == 'TRBKID - JUVENILE OFFENSE') ||
($feature.Problem == 'TRTOP-TRT CALLOUT') ||
return "Sensitive"
}
else {
return $feature.Problem
}
The expression works property when I view the web map via a web browser on my desktop, but it doesn't work on a mobile device when using the Explorer app or the 'classic' Collector app. Is this just and expected limitation of those apps?