fix: update name extraction logic in QueryExecuterService to use the last item in the array

This commit is contained in:
Boris D
2025-10-13 16:39:19 +03:00
parent e327a8da85
commit bddd808484

View File

@ -166,7 +166,7 @@ export class QueryExecuterService {
return { return {
type: item[0], type: item[0],
name: item[1], name: item[item.length - 1],
}; };
}); });