Browse Source

Fixes prettier issue

main
Eric Amodio 5 years ago
parent
commit
648b260a06
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/commands/diffWithWorking.ts

+ 3
- 1
src/commands/diffWithWorking.ts View File

@ -88,7 +88,9 @@ export class DiffWithWorkingCommand extends ActiveEditorCommand {
firstIfNotFound: true firstIfNotFound: true
}); });
if (args.commit === undefined) { if (args.commit === undefined) {
return window.showWarningMessage('Unable to open compare. File doesn\'t exist in the specified revision');
return window.showWarningMessage(
"Unable to open compare. File doesn't exist in the specified revision"
);
} }
} }
catch (ex) { catch (ex) {

Loading…
Cancel
Save