autcomplete gefixed

This commit is contained in:
ma0048
2025-10-06 10:20:21 +02:00
parent 81725a0fe9
commit 9309a48e97
4 changed files with 17 additions and 9 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ export default {
{
return {
method: 'get',
url: '/api/frontend/v1/lv/gruppe/getBenutzerSearch/' + encodeURIComponent(query)
url: `/api/frontend/v1/lv/gruppe/getBenutzerSearch?query=${encodeURIComponent(query)}`
};
},
@@ -49,7 +49,7 @@ export default {
{
return {
method: 'get',
url: '/api/frontend/v1/lv/gruppe/getAllSearch/' + encodeURIComponent(query)
url: `/api/frontend/v1/lv/gruppe/getAllSearch?query=${encodeURIComponent(query)}`
};
},
+1 -1
View File
@@ -12,7 +12,7 @@ export default {
{
return {
method: 'get',
url: '/api/frontend/v1/lv/lektor/getLektorenSearch/' + encodeURIComponent(query)
url: `/api/frontend/v1/lv/lektor/getLektorenSearch?query=${encodeURIComponent(query)}`
};
},