Skip to content

Commit cdebc48

Browse files
authored
Merge pull request #98 from bendera/fix/config-is-not-applied
fix: config wasn't applied
2 parents 2dfa1b0 + a9bb1b4 commit cdebc48

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ All notable changes to the "commit-message-editor" extension will be documented
77
### Fixed
88

99
- 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))
10+
- In some cases, the configuration was not applied at all on the editor tab.
1011

1112
### Added
1213

src/commands/EditorController.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export default class EditorController {
5353

5454
this._ui = new UiApi(this._primaryEditorPanel.webview);
5555
this._ui.sendSCMInputBoxValue(this._git.getSCMInputBoxMessage());
56+
this._ui.sendConfig(config);
5657

5758
if (repo && repo.rootUri) {
5859
const repoPath = repo.rootUri.path;

0 commit comments

Comments
 (0)