Hi Hannah,
It looks like there’s a bug in the job-standard card in the theme (v 1.16). The subtitle field is using location.externalLocation
instead of profile.location.externalLocation
.
In addition to that, there’s no null-checking happening on the fields in the subtitle which is why it’s printing like that.
We’ll get a fix in an upcoming theme release. In the meantime, you can fork the job-standard card to fix the field and add a null check to the subtitle like this
subtitle: (profile.c_department ? profile.c_department : '') + (profile.c_department && profile.location.externalLocation ? " | " : '') + (profile.location.externalLocation ? profile.location.externalLocation : ''),
Let me know if you have any more questions!