HR template doesn't get filled up if Assign To and Rich Description are both mappedDescriptionWhen using HR Templates, if the rich_description and assigned_to are mapped to certain values, the template is not going to correctly show in the new template UI but it will show in the native forms UI. Steps to Reproduce 1. Create a template which has assigned_to and rich_description both filled in. 2. Go to Switch to New UI 3. Notice that page is not being populated with existing templateWorkaroundWorkaround is to modify the script HRServiceCreatorUtilAjax. Here are the required line modifications to get this to work: 1. find a line of code that contain the following code: } else if ((elementType == 'journal_list') || (elementType == 'journal_input') || (elementType == 'user_input') || (elementType == 'journal') || (elementType == 'translated_html')) { 2. modify this line to read: } else if ((elementType == 'journal_list') || (elementType == 'journal_input') || (elementType == 'user_input') || (elementType == 'journal') || (elementType == 'translated_html') || (elementType == 'html')) {Related Problem: PRB1595962