1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

chore: cleans up types in typescript (#2335)

This commit is contained in:
Amir Raminfar
2023-08-03 09:23:58 -07:00
committed by GitHub
parent ac886b0e9a
commit 44e21cba83
6 changed files with 32 additions and 29 deletions

View File

@@ -7,11 +7,11 @@
</div>
<div>
<span class="has-text-weight-light"> LOAD </span>
<span class="has-text-weight-semibold"> {{ container.getLastStat().snapshot.cpu }}% </span>
<span class="has-text-weight-semibold"> {{ container.stat.cpu }}% </span>
</div>
<div>
<span class="has-text-weight-light"> MEM </span>
<span class="has-text-weight-semibold"> {{ formatBytes(container.getLastStat().snapshot.memoryUsage) }} </span>
<span class="has-text-weight-semibold"> {{ formatBytes(container.stat.memoryUsage) }} </span>
</div>
</template>