We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95632aa commit f8b8655Copy full SHA for f8b8655
1 file changed
src/lm/tools/displayIssuesTool.ts
@@ -80,11 +80,7 @@ export class DisplayIssuesTool extends ToolBase<DisplayIssuesParameters> {
80
return ['number', 'title', 'state'];
81
} else if (indexOfUrl >= 0) {
82
// Never include the url column
83
- if (result.indexOf('number') >= 0) {
84
- result.splice(indexOfUrl, 1);
85
- } else {
86
- result[indexOfUrl] = 'number';
87
- }
+ result.splice(indexOfUrl, 1);
88
}
89
90
return result;
0 commit comments