<img width="2547" height="417" alt="Image" src="https://github.com/user-attachments/assets/4c7d7317-af92-4fe3-8662-e61af7194140" /> The trigger is https://github.com/canonical/dashboard/blob/main/dashboard/projects/templates/projects/partial_project_detail_objectivestatus.html#L7. In Safari, when clicking the `<select>` menu of line 15 in the same file, the menu remains open (correctly). In Chrome, it unexpectedly remains open only for .5 seconds and then collapses. This is because line 7's ``` click from:tbody#{{ projectobjective.name|slugify }} div.attributes delay:.5s ``` appears to match the `<select>` in Chrome, whereas it should only match the `<div class="attributes">` in https://github.com/canonical/dashboard/blob/main/dashboard/projects/templates/projects/partial_project_detail_condition.html.
The trigger is https://github.com/canonical/dashboard/blob/main/dashboard/projects/templates/projects/partial_project_detail_objectivestatus.html#L7.
In Safari, when clicking the
<select>menu of line 15 in the same file, the menu remains open (correctly).In Chrome, it unexpectedly remains open only for .5 seconds and then collapses. This is because line 7's
appears to match the
<select>in Chrome, whereas it should only match the<div class="attributes">in https://github.com/canonical/dashboard/blob/main/dashboard/projects/templates/projects/partial_project_detail_condition.html.