code_review: PR #589

* do not using namespace `SourceGit.*`
* should use branch instead of repository
This commit is contained in:
leo 2024-10-22 10:06:53 +08:00
parent 1855b43750
commit 728d003717
No known key found for this signature in database
2 changed files with 3 additions and 4 deletions

View file

@ -1157,7 +1157,7 @@ namespace SourceGit.ViewModels
item.Icon = App.CreateMenuIcon("Icons.Code");
item.Click += (_, e) =>
{
CommitMessage = template.Apply(_repo, _staged);
CommitMessage = template.Apply(_repo.CurrentBranch, _staged);
e.Handled = true;
};
menu.Items.Add(item);