Skip to content

Commit 24b0ea5

Browse files
committed
update branch list limit to show 3 top branches
1 parent f88b591 commit 24b0ea5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/Components/DashBoard/Repository/RepoComponents/RepoDetails/RepoRightPaneComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default function RepoRightPaneComponent(props) {
4747
{gitBranchList &&
4848
gitCurrentBranch &&
4949
gitBranchList
50-
.slice(0, 3)
50+
.slice(0, 2)
5151
.map((entry) => {
5252
if (entry) {
5353
if (entry !== gitCurrentBranch) {

0 commit comments

Comments
 (0)