Fix refactor description

Fixes #38083
This commit is contained in:
Matt Bierner
2017-11-10 10:35:24 -08:00
parent 58aca31e9b
commit 8e1bf19f3d

View File

@@ -147,9 +147,9 @@ export default class TypeScriptRefactorProvider implements vscode.CodeActionProv
} else {
for (const action of info.actions) {
actions.push({
title: info.description,
title: action.description,
command: {
title: info.description,
title: action.description,
command: ApplyRefactoringCommand.ID,
arguments: [document, file, info.name, action.name, range]
}