Add a button to the branches cards, and make it link to the /branches page

755e69eee1ed61addf2117a6a2524308c3044e99

Tucker McKnight | Tue Jan 20 2026

Add a button to the branches cards, and make it link to the /branches page
js_templates/branches.ts:15
Before
15
                  <a class="card-title" href="${data.reposPath}/${slugify(branch.repoName)}/branches/${slugify(branch.branchName)}">${branch.branchName}</a>
After
15
                  <a class="card-title" href="${data.reposPath}/${slugify(branch.repoName)}/branches/${slugify(branch.branchName)}/branches">${branch.branchName}</a>
js_templates/branches.ts:23
Before
23
After
23
                <div class="card-footer">
                  <a class="m-1 btn btn-outline-primary shadow-none" href="${data.reposPath}/${slugify(branch.repoName)}/branches/${slugify(branch.branchName)}/branches">Switch to branch</a>
                </div>