this repo has no description
1{{ define "repo/fragments/diffChangedFiles" }}
2 {{ $stat := .Stat }}
3 {{ $fileTree := fileTree .ChangedFiles }}
4 <div class="col-span-1 md:col-span-2 mt-4">
5 <section class="sticky top-0 overflow-x-auto text-sm px-6 py-2 border border-gray-200 dark:border-gray-700 w-full mx-auto md:min-h-screen rounded bg-white dark:bg-gray-800 drop-shadow-sm">
6 <div class="diff-stat">
7 <div class="flex gap-2 items-center">
8 <strong class="text-sm uppercase dark:text-gray-200">Changed files</strong>
9 {{ template "repo/fragments/diffStatPill" $stat }}
10 </div>
11 {{ template "repo/fragments/fileTree" $fileTree }}
12 </div>
13 </section>
14 </div>
15{{ end }}