Console error on change record having conflict detectionIssue Steps to reproduce:1. Open any change request record having conflict detected.2. Go to the inspect element and click on the console.3. An error with the red mark will come saying."Uncaught TypeError: Cannot read property 'hide' of nullat updateWarningBoxAndConflictButton (ChangeRequestConflictUtils.jsdbx?v=08-10-2020_1624&c=31_853:190)"CauseThe issue is occurring as the Ui marco "change_request_conflict_progress" was customized.Resolution// Get references to the two gui widgets you intend to enable/disablevar warningBox = $('conflictDetectionStatus');var checkConflictsButton = $('conflict_action_run');<div id="conflictDetectionStatus" class="outputmsg outputmsg_warning notification notification-warning" style="display: none">The Ui script : ChangeRequestConflictUtils was calling function updateWarningBoxAndConflictButtonWhere it was fetching conflictDetectionStatus parameter from the above Ui macro which was returning null causing the error in the console.Reverting the same to OOB, resolved the issue