Coding Error in Script Include LegalEventSecurityUtilsBase - Function filtererEventListIssue -> In the 'LegalEventSecurityUtilsBase' script include, the filtererEventList function has a coding error in line 54 and line 59. In the following line of code 'if (grp.due_date_time.getDisplayValue() > new GlideScheduleDateTime()) {', there should not be '.getDisplayValue()' as it makes the two comparable formats inconsistent. The code should read:if(grp.due_date_time > new GlideScheduleDateTime()){ -> This is affecting the ability to associate a legal matter task to a milestone in Legal Matter Management.Symptoms-> When using .getDisplayValue(), the output is '06-17-2025 01:30:00 PM', while new GlideScheduleDateTime() returns '2025-06-06 09:18:20'. The comparison between these two values fails and returns false. However, when .getDisplayValue() is not used, the comparison works as expected and returns true. ->This affects the ability to associate a legal matter task to a milestone in Legal Matter Management.ReleaseCurrently, the issue is observed in the 'Legal matter management' plugin, specifically in versions 8.6.0 and below, which are known to exhibit this behavior. ResolutionThe dev team has reviewed and considered this as a product defect, and as a result, the PRB1903640 has been created to address the issue. Currently, the PRB is still under investigation, and the team is planning to fix this in upcoming future releases. Also one more point to notice is that this issue might occur only when instance date format is different from "yyyy-MM-dd" thats when comparing '06-17-2025 01:30:00 PM' and 2025-06-06 09:18:20 gives wrong output.