Skip to content

Commit

Permalink
Merge pull request #2145 from SFDO-Tooling/bug/incorrect-difference-l…
Browse files Browse the repository at this point in the history
…inks

Fixed Generation of Incorrect dif links for out of date orgs
  • Loading branch information
jkasturi-sf authored Nov 6, 2023
2 parents 435a0c3 + 201ea96 commit 0027952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/components/orgs/cards/orgInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const OrgInfo = ({
// synced status for orgs
if (baseCommit) {
// eslint-disable-next-line max-len
compareChangesUrl = `${repoUrl}/compare/${org.latest_commit}...${baseCommit}`;
compareChangesUrl = `${repoUrl}/compare/${baseCommit}...${org.latest_commit}`;
}
outOfDateMsg = (
<li>
Expand Down

0 comments on commit 0027952

Please sign in to comment.