Ahead/behind in branch details (#1893)

Adds the ahead/behind count to the branch details view.
This commit is contained in:
René Pfeuffer
2021-12-15 15:03:40 +01:00
committed by GitHub
parent 8f14956017
commit 1118ddd146
15 changed files with 169 additions and 64 deletions

View File

@@ -41,7 +41,7 @@ export const gitPredicate = (props: any) => {
};
binder.bind("repos.repository-details.information", ProtocolInformation, gitPredicate);
binder.bind("repos.branch-details.information", GitBranchInformation, gitPredicate);
binder.bind("repos.branch-details.information", GitBranchInformation, { priority: 100, predicate: gitPredicate });
binder.bind("repos.tag-details.information", GitTagInformation, gitPredicate);
binder.bind("repos.repository-merge.information", GitMergeInformation, gitPredicate);
binder.bind("repos.repository-avatar", GitAvatar, gitPredicate);