changed code-branch icon for more clarity over commit icon

This commit is contained in:
Florian Scholdei
2019-03-28 13:40:12 +01:00
parent a5d07cc2cd
commit d5db607d66
3 changed files with 4 additions and 4 deletions

View File

@@ -26,7 +26,7 @@ class ChangesetButtonGroup extends React.Component<Props> {
<ButtonGroup className="is-pulled-right">
<Button link={changesetLink}>
<span className="icon">
<i className="fas fa-code-branch"></i>
<i className="fas fa-exchange-alt"></i>
</span>
<span className="is-hidden-mobile is-hidden-tablet-only">
{t("changeset.buttons.details")}

View File

@@ -39,7 +39,7 @@ class RepositoryEntry extends React.Component<Props> {
if (repository._links["changesets"]) {
return (
<RepositoryEntryLink
iconClass="fa-code-branch fa-lg"
iconClass="fas fa-exchange-alt fa-lg"
to={repositoryLink + "/changesets"}
/>
);

View File

@@ -212,7 +212,7 @@ class RepositoryRoot extends React.Component<Props> {
repository={repository}
linkName="branches"
to={`${url}/branches/`}
icon="fas fa-folder-open"
icon="fas fa-code-branch"
label={t("repositoryRoot.menu.branchesNavLink")}
activeOnlyWhenExact={false}
/>
@@ -220,7 +220,7 @@ class RepositoryRoot extends React.Component<Props> {
repository={repository}
linkName="changesets"
to={`${url}/changesets/`}
icon="fas fa-code-branch"
icon="fas fa-exchange-alt"
label={t("repositoryRoot.menu.historyNavLink")}
activeWhenMatch={this.matches}
activeOnlyWhenExact={false}