indentation fix

cea1ef33f83068960a6809ce09187ee2364f6ab0

Tucker McKnight | Fri Jan 02 2026

indentation fix
js_templates/branches.ts:11
Before
11
12
13
14
15
16
17
18
19
20
21
22
            ${branch.repoName === data.branchInfo.repoName
              ? `
                <div class="card bezel-gray m-2 flex-grow-1" style="flex-basis: 20rem; max-width: 20rem;">
                  <div class="card-header">
                    <a class="card-title" href="${data.reposPath}/${slugify(branch.repoName)}/branches/${slugify(branch.branchName)}">${branch.branchName}</a>
                    ${branch.branchName === data.branchInfo.branchName ? '<div class="badge rounded-pill bg-secondary mx-1">current</div>' : ''}
                    ${branch.branchName === data.reposConfig.repos[branch.repoName].defaultBranch ? '<div class="badge rounded-pill bg-info text-dark mx-1">default</div>' : ''}
                  </div>
                  <div class="card-body">Data about branch goes here</div>
              `
              : ''
            }
After
11
12
13
14
15
16
17
18
19
20
21
22
          ${branch.repoName === data.branchInfo.repoName
            ? `
              <div class="card bezel-gray m-2 flex-grow-1" style="flex-basis: 20rem; max-width: 20rem;">
                <div class="card-header">
                  <a class="card-title" href="${data.reposPath}/${slugify(branch.repoName)}/branches/${slugify(branch.branchName)}">${branch.branchName}</a>
                  ${branch.branchName === data.branchInfo.branchName ? '<div class="badge rounded-pill bg-secondary mx-1">current</div>' : ''}
                  ${branch.branchName === data.reposConfig.repos[branch.repoName].defaultBranch ? '<div class="badge rounded-pill bg-info text-dark mx-1">default</div>' : ''}
                <div class="card-body">Data about branch goes here</div>
              </div>
            `
            : ''
          }