Skip to content

Commit 199e31a

Browse files
committed
chore: disable file count too
1 parent 38a05a3 commit 199e31a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

frontend/app/pages/admin/health.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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">

0 commit comments

Comments
 (0)