#8052 - Use params.q as table filter in lilium #3023

Merged
jsegarra merged 3 commits from use_params_q into master 2024-09-26 12:33:28 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit c83f44a455 - Show all commits

View File

@ -67,7 +67,8 @@ export default class App {
};
if (this.logger.$params.q)
newRoute = newRoute.concat(`list?table=${this.logger.$params.q}`);
this.logger.$params.table = this.logger.$params.q;
return this.logger.$http.get('Urls/findOne', {filter})
.then(res => {