Skip to content

Commit 8e1bf19

Browse files
committed
Fix refactor description
Fixes microsoft#38083
1 parent 58aca31 commit 8e1bf19

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/typescript/src/features/refactorProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ export default class TypeScriptRefactorProvider implements vscode.CodeActionProv
147147
} else {
148148
for (const action of info.actions) {
149149
actions.push({
150-
title: info.description,
150+
title: action.description,
151151
command: {
152-
title: info.description,
152+
title: action.description,
153153
command: ApplyRefactoringCommand.ID,
154154
arguments: [document, file, info.name, action.name, range]
155155
}

0 commit comments

Comments
 (0)