Field autocomplete not working if already 'data-autocomplete-url' has a query parameter

Created on 30 January 2025, 2 months ago

Steps to reproduce

1. Enable Tagify widget for a entity reference field.
2. Go to entity creation page and inspect the <input> of field with Tagify widget.
3. Check the data-autocomplete-url and modify it by adding some query parameter, for example foo=some_foo
data-autocomplete-url="/tagify_autocomplete/user/group_learners_selection/uzCyl-z6o4-HsZ0CwKJKhD97v9-m0ejLxSgXrz65USk?foo=some_foo"

4. Type any letter in field, no result found.
5. If u debug fetch() in tagify.js:
/tagify_autocomplete/user/group_learners_selection/dWc0zRBy9Zz51a-LL_-RnTZNfHL9eK5ra-dlcX6uXlE?foo=some_foo?q=d&selected=.

6. Notice this part foo=some_foo?q=d. Instead of '?' it should be and param '&'.
Otherwise controller will receive array of parameters in request:

  [
    'foo' => 'some_foo?q=d',
    'selected' => '',
  ],

When it should like that to work properly:

  [
    'foo' => 'some_foo',
    'q' => 'd',
    'selected' => '',
  ],
🐛 Bug report
Status

Active

Version

1.2

Component

Code

Created by

🇺🇦Ukraine oleksandr.s

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024