Skip to content

Commit

Permalink
Try using fixAllDescription for js/ts quick fixes
Browse files Browse the repository at this point in the history
Fixes #42549
  • Loading branch information
mjbvz committed May 31, 2018
1 parent 511feac commit c8ff448
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ export default class TypeScriptQuickFixProvider implements vscode.CodeActionProv
}

const action = new vscode.CodeAction(
localize('fixAllInFileLabel', '{0} (Fix all in file)', tsAction.description),
tsAction.fixAllDescription || localize('fixAllInFileLabel', '{0} (Fix all in file)', tsAction.description),
vscode.CodeActionKind.QuickFix);
action.diagnostics = [diagnostic];

Expand Down

0 comments on commit c8ff448

Please sign in to comment.