- 🇺🇦Ukraine khiminrm
Created patch by using suggested solution in the description for RangeDatepickerWidget
- Status changed to Needs review
over 1 year ago 4:56pm 15 March 2023 - 🇺🇦Ukraine khiminrm
Small fix when there are multiple different active facets
- 🇮🇹Italy p4trizio Como
Input value "f" contains a non-scalar value.
Changing$facetParam = \Drupal::request()->query->get('f');
to
$facetParam = \Drupal::request()->get('f');
- 🇧🇪Belgium bernardopaulino Brussels
I found out that the submitted date is also lost when using the Datepicker widget. Apparently the variable $default in the build function is not used after grabbing the selecting date from the active items. I made a patch that should fix the issue.
- 🇧🇪Belgium bernardopaulino Brussels
With my changes I introduced a new issue where the URL query string was not being updated when the Datepicker was cleared. I fixed the datepicker.js and now the facet value is being properly removed from the query string.