vscode-js-annotations icon indicating copy to clipboard operation
vscode-js-annotations copied to clipboard

Gets incorrect parameters

Open kurdtpage opened this issue 5 years ago • 0 comments

VS Code Version: 1.41.1 Extension Version: 0.11.0

What's the issue: js param annot The hint is looking at the .union method for the list of parameters, but it should be looking at the .load method. The line that starts with this.load( is where the problem is. Instead of this.load( table: where, pk: params, where: columns, params: null, columns: null, null, this.pk.length - 1); it should be: this.load( where: where, params: params, columns: columns, sort: null, group: null, limit: null, tableIndex: this.pk.length - 1);

kurdtpage avatar Dec 20 '19 03:12 kurdtpage