Empty value for Primary contract under Contractor record in H&S User profile listDescriptionWhen creating a new contractor record in the Health and Safety User table, the display value doesn't reflect the user's name.Steps to Reproduce Environment Details: Glide Version: Vancouver, WashingtonDC, XanaduH&S version : [upgrade from H&S v7 to v8 (imt-core 1.40.1 to 1.40.2)] Steps to Reproduce: Login as Health and Safety AdminNavigate to Health and Safety profiles listCreate a new Health and Safety profile with the type Contractor Expected Result: The user's name should be displayed in the Health and Safety profiles list. Actual Result: A different value is shown as the display value of the record.WorkaroundGo to the configuration of the sn_imt_core_health_and_safety_user table Navigate to the configuration of the column "Display value"Make sure the value of the field "Calculated value" is the same as the script below: (function calculatedFieldValue(current) { if (current.type == 'employee' || current.type == 'contractor') { return current.getDisplayValue('user'); } else { return current.getDisplayValue('visitor'); } })(current); Related Problem: PRB1824190