File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## 0.3.4
4+
5+ - Bugfix: Fix references report groupBy.
6+
37## 0.3.3
48
59- New Scope Filters: Filters starting with "!" define the elements to display, excluding the rest.
Original file line number Diff line number Diff line change 22 "name" : " code-auditor" ,
33 "displayName" : " CodeAuditor" ,
44 "description" : " Code Auditor Notebook" ,
5- "version" : " 0.3.3 " ,
5+ "version" : " 0.3.4 " ,
66 "publisher" : " red4sec" ,
77 "icon" : " resources/code-auditor.png" ,
88 "readme" : " README.md" ,
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export async function generateReferences(out: vscode.OutputChannel) {
4646
4747 if ( groupOption . toLocaleLowerCase ( ) === "yes" ) {
4848 const inputGroup = await vscode . window . showInputBox ( {
49- value : groupBy === 0 ? "3" : groupBy . toString ( ) ,
49+ value : isNaN ( groupBy ) || groupBy === 0 ? "3" : groupBy . toString ( ) ,
5050 prompt : "Group by first # words" ,
5151 placeHolder : "number between 1 and 10" ,
5252 ignoreFocusOut : true ,
You can’t perform that action at this time.
0 commit comments