- Issue created by @mcdruid
- π¬π§United Kingdom mcdruid π¬π§πͺπΊ
I think the problem is here:
https://git.drupalcode.org/project/securitydrupalorg/-/blob/7.x-1.x/feat...
$handler->display->display_options['filters']['field_issue_status_value']['expose']['remember_roles'] = array( 2 => '2', 3 => 0, 1 => 0, 9 => 0, 18 => 0, 23 => 0, 5 => 0, 4 => 0, );
Not sure if the status values have changes since this view was exported to code, but looks like the default selected value of "2" doesn't match the db any more?
Do we need to change this to:
$handler->display->display_options['filters']['field_issue_status_value']['expose']['remember_roles'] = array( 'Open' => 'Open', );
(Been a while since I looked at one of these - perhaps it needs to be numerical ids that are not reflected in the UI.. don't remember).
I'm not certain if the view has been overridden and therefore changes to this file wouldn't actually make any difference, so I won't create a patch/MR - I am happy to if that would help though.
- πΊπΈUnited States greggles Denver, Colorado, USA
I think this needs someone from the DA who manage code for the site. They can adjust this in the views UI and export it to the feature.