File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -110,10 +110,11 @@ useSeo(computed(() => ({ title: i18n.t("health.title"), route })));
110110 <template #header > {{ i18n.t("health.fileSizes") }} ({{ healthReport.finished.fileSizes?.length }})</template >
111111
112112 <ul class =" max-h-xs overflow-auto" >
113- <li v-for =" project in healthReport.finished.fileSizes" :key =" project.namespace.owner + project.namespace.slug" class =" flex justify-between " >
114- <Link :to =" '/' + project.namespace.owner + '/' + project.namespace.slug" >
113+ <li v-for =" project in healthReport.finished.fileSizes" :key =" project.namespace.owner + project.namespace.slug" class =" flex gap-4 " >
114+ <Link class = " grow-1 " :to =" '/' + project.namespace.owner + '/' + project.namespace.slug" >
115115 {{ project.namespace.owner + "/" + project.namespace.slug }}
116116 </Link >
117+ <span >{{ project.fileCount }} files</span >
117118 <span >{{ formatSize(project.totalSize) }}</span >
118119 </li >
119120 <li v-if =" !healthReport.finished.fileSizes?.length" >
You can’t perform that action at this time.
0 commit comments