forked from tangled.org/core
See also https://github.com/ilyagr/tangled-core

Compare changes

Choose any two refs to compare.

Changed files
+11
appview
pages
templates
repo
pulls
pulls
+10
appview/pages/templates/repo/pulls/patch.html
··· 13 13 14 14 {{ define "content" }} 15 15 <section> 16 + <!-- Here --> 17 + 18 + {{ if .Stack }} 19 + {{ range .Stack }} 20 + <div> 21 + {{ .PullId }}: {{ .Title }} 22 + </div> 23 + {{ end }} 24 + {{ end }} 25 + 16 26 <section 17 27 class="bg-white dark:bg-gray-800 p-6 rounded relative w-full mx-auto drop-shadow-sm dark:text-white" 18 28 >
+1
appview/pulls/pulls.go
··· 367 367 diff := patchutil.AsNiceDiff(patch, pull.TargetBranch) 368 368 369 369 s.pages.RepoPullPatchPage(w, pages.RepoPullPatchParams{ 370 + // HERE 370 371 LoggedInUser: user, 371 372 RepoInfo: f.RepoInfo(user), 372 373 Pull: pull,