When the service request details view gets populated, one of my date fields says Dec 31, 1969. This field is null and should display N/A not Dec 31, 1969. In the function ServiceRequestDetails(attributes) I can see where the date is declared but I think it needs a if/then statement in case the field is null like in my case. I've tried a few different ways but can't seem to fix this. This is what I came up with; is there something I need to change or is there another place in the utils.js I should put this instead of inside the ServiceRequestDetails(attributes) function? for (var index in infoWindowData) { if (!infoWindowData[index].AttributeValue.ActualReInspectionDate == '') { infoWindowData[index].AttributeValue.ActualReInspectionDate == showNullValueAs; } else{ var date = new js.date(); }