fix: update name extraction logic in QueryExecuterService to use the last item in the array
This commit is contained in:
@ -166,7 +166,7 @@ export class QueryExecuterService {
|
||||
|
||||
return {
|
||||
type: item[0],
|
||||
name: item[1],
|
||||
name: item[item.length - 1],
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user