Skip to content

Commit

Permalink
Remove placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed Nov 7, 2017
1 parent 1a9e0c9 commit b24ee60
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/vs/editor/contrib/quickFix/browser/quickFixWidget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ export class QuickFixContextMenu {

const actions = fixes.then(value => {
return value.map(action => {
// TODO: just placeholders for testing
return new Action(action.command.id, (action.diagnostics ? '💡 ' : '✂️ ') + action.title, undefined, true, () => {
return new Action(action.command.id, action.title, undefined, true, () => {
return always(
this.onApplyCodeAction(action),
() => this._onDidExecuteCodeAction.fire(undefined));
Expand Down

0 comments on commit b24ee60

Please sign in to comment.