mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-25 06:25:31 +00:00
Backport #24133 by @jtran For 2-dot direct compare, we should use the base commit in the title and templates, as is used elsewhere, not the common ancestor which is used for 3-dot compare. I believe that this change should have been included in #22949. Co-authored-by: Jonathan Tran <jonnytran@gmail.com>
This commit is contained in:
parent
10f93995e9
commit
494e373292
|
@ -551,7 +551,11 @@ func ParseCompareInfo(ctx *context.Context) *CompareInfo {
|
||||||
ctx.ServerError("GetCompareInfo", err)
|
ctx.ServerError("GetCompareInfo", err)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
if ci.DirectComparison {
|
||||||
|
ctx.Data["BeforeCommitID"] = ci.CompareInfo.BaseCommitID
|
||||||
|
} else {
|
||||||
ctx.Data["BeforeCommitID"] = ci.CompareInfo.MergeBase
|
ctx.Data["BeforeCommitID"] = ci.CompareInfo.MergeBase
|
||||||
|
}
|
||||||
|
|
||||||
return ci
|
return ci
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue