cleanup commit template, merge

related to #66522
This commit is contained in:
Joao Moreno
2019-10-15 17:43:33 +02:00
parent 4a80681a01
commit d5664e35ed
7 changed files with 31 additions and 22 deletions

View File

@@ -395,6 +395,10 @@ class ExtHostSourceControl implements vscode.SourceControl {
}
set commitTemplate(commitTemplate: string | undefined) {
if (commitTemplate === this._commitTemplate) {
return;
}
this._commitTemplate = commitTemplate;
this._proxy.$updateSourceControl(this.handle, { commitTemplate });
}