do not send filters to backend when search endpoint is used

This commit is contained in:
Harald Bamberger
2025-12-04 08:39:37 +01:00
parent c849b5defa
commit 841b4736a9
@@ -385,7 +385,7 @@ export default {
const params = (endpoint?.params !== undefined) ? endpoint.params : {};
let method = (endpoint?.method !== undefined) ? endpoint.method : 'get';
if (this.filter.length)
if (this.filter.length && !endpoint.url.match(/\/search\//))
{
params.filter = this.filter;
method = 'post';