Use the code deltas from TS only, and use the right kind name to trigger the popover

This commit is contained in:
Orta Therox 2019-10-01 09:15:27 -04:00
parent e86c4f00bf
commit c6ad8230be

View file

@ -691,12 +691,7 @@ export class CodeActionAdaptor extends FormatHelper implements monaco.languages.
title: codeFix.description,
edit: { edits: edits },
diagnostics: context.markers,
command: {
id: codeFix.fixName,
title: codeFix.description,
tooltip: codeFix.description
},
kind: codeFix.fixName
kind: "quickfix"
};
return action;