this repo has no description
1{{ define "repo/fragments/diffChangedFiles" }}
2 {{ $stat := .Stat }}
3 {{ $fileTree := fileTree .ChangedFiles }}
4 <section
5 class="overflow-x-auto text-sm px-6 py-2 border border-gray-200 dark:border-gray-700 w-full mx-auto min-h-full 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">
9 Changed files
10 </strong>
11 {{ template "repo/fragments/diffStatPill" $stat }}
12 </div>
13 {{ template "repo/fragments/fileTree" $fileTree }}
14 </div>
15 </section>
16{{ end }}