Skip to content

Commit 286a3e1

Browse files
committed
🐛 Fixed post-commit solo author minus
When executing the solo sequence the unselected author stays with a minus but should change to an plus to add the co-author. #380
1 parent e9f36bb commit 286a3e1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Follows [Semantic Versioning](https://semver.org/).
44

55
## Next version
66

7+
### Fixed
8+
9+
- When executing the solo sequence post-commit the unselected author gets the "plus" action instead a "minus" icon. [Issue 380](https://github.com/rkotze/git-mob-vs-code/issues/380)
10+
711
## 1.21.0
812

913
### Added

src/ext-config/solo-after-commit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function soloSwitch(coAuthorProvider, afterCommitOn) {
1717
if (afterCommitOn) {
1818
watch = watchForCommit(async function () {
1919
await coAuthorProvider.coAuthorGroups.solo();
20-
coAuthorProvider.reloadData();
20+
await vscode.commands.executeCommand("gitmob.reload");
2121
});
2222
} else {
2323
if (watch) {

0 commit comments

Comments
 (0)