Skip to content

Commit 4db1de2

Browse files
committed
print git meta branch before commit
1 parent 8c85535 commit 4db1de2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/components/GitMetadata.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ export function GitMetadata({ git }: { git?: GitMetaLinks | null }) {
88
return (
99
<>
1010
{git.pullRequestUrl && git.pullRequestNumber && <GitMetadataPullRequest git={git} />}
11-
{git.shortSha && <GitMetadataCommit git={git} />}
1211
{git.branchUrl && <GitMetadataBranch git={git} />}
12+
{git.shortSha && <GitMetadataCommit git={git} />}
1313
</>
1414
);
1515
}

0 commit comments

Comments
 (0)