Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
bendera committed May 8, 2023
2 parents eb2c21d + 282f214 commit 91974ca
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ All notable changes to the "commit-message-editor" extension will be documented
### Fixed

- The form view didn't show if the repository didn't contain any commits. ([#94](https://github.com/bendera/vscode-commit-message-editor/issues/94))
- In some cases, the configuration was not applied at all on the editor tab.

### Added

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "commit-message-editor",
"displayName": "Commit Message Editor",
"description": "Edit commit messages in a convenient way.",
"version": "0.24.2-edge.8",
"version": "0.24.2-edge.9",
"license": "MIT",
"preview": false,
"publisher": "adam-bender",
Expand Down
1 change: 1 addition & 0 deletions src/commands/EditorController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export default class EditorController {

this._ui = new UiApi(this._primaryEditorPanel.webview);
this._ui.sendSCMInputBoxValue(this._git.getSCMInputBoxMessage());
this._ui.sendConfig(config);

if (repo && repo.rootUri) {
const repoPath = repo.rootUri.path;
Expand Down

0 comments on commit 91974ca

Please sign in to comment.