11+ seconds to open Child Incident PopupDescriptionSOW: open child incident popup taking more timeSteps to Reproduce 1. Login to ServiceNow Instance.2. Navigate to Service Operations Workspace.3. Open an Incident4. Click on Related List5. Click on Child Incident6. Click on Add ButtonWorkaroundCurrently, when clicking on the Child Incidents RL -> Add button to open the modal to add/remove child incidents, the modal loads both active and inactive incidents which can be a huge number in some customer instances.Loading this huge no of incidents in the modal may have a performance impact and may lead to a delay in the modal load.In the "Washington DC" release we have made a fix to show only active incidents in the modal which will have performance improvements in most cases as no. of active incidents will always be lesser than the no. of all incidents.If customers are willing to uptake the fix for earlier releases, they can follow the below Navigate to the script include "RelatedListIncidentItemCandidateFilter", where the filter to be applied on the modal is defined.Update function "getFilterQuery" like belowFrom "return "sys_idNOT IN" + result.join(",");" to "return "sys_idNOT IN" + result.join(",") + "^active=true";" Validate when clicking on the Child Incidents RL -> Add button opens modal having only active incidentsRelated Problem: PRB1701345