diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projectBranches')
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/projectBranches/components/BranchRow.tsx b/server/sonar-web/src/main/js/apps/projectBranches/components/BranchRow.tsx index 6dc8f5e82a8..b35f229419a 100644 --- a/server/sonar-web/src/main/js/apps/projectBranches/components/BranchRow.tsx +++ b/server/sonar-web/src/main/js/apps/projectBranches/components/BranchRow.tsx @@ -167,7 +167,7 @@ export default class BranchRow extends React.PureComponent<Props, State> { /> {getBranchLikeDisplayName(branchLike)} {isMainBranch(branchLike) && ( - <div className="outline-badge spacer-left">{translate('branches.main_branch')}</div> + <div className="badge spacer-left">{translate('branches.main_branch')}</div> )} </td> <td className="thin nowrap"> diff --git a/server/sonar-web/src/main/js/apps/projectBranches/components/__tests__/__snapshots__/BranchRow-test.tsx.snap b/server/sonar-web/src/main/js/apps/projectBranches/components/__tests__/__snapshots__/BranchRow-test.tsx.snap index 800b10d0601..498bdbe9ab8 100644 --- a/server/sonar-web/src/main/js/apps/projectBranches/components/__tests__/__snapshots__/BranchRow-test.tsx.snap +++ b/server/sonar-web/src/main/js/apps/projectBranches/components/__tests__/__snapshots__/BranchRow-test.tsx.snap @@ -14,7 +14,7 @@ exports[`renders main branch 1`] = ` /> master <div - className="outline-badge spacer-left" + className="badge spacer-left" > branches.main_branch </div> |