Format Immich totals

pull/2814/head
Jack Bailey 4 months ago committed by GitHub
parent 64ac19859c
commit 24da87b4e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -30,9 +30,9 @@ export default function Component({ service }) {
return (
<Container service={service}>
<Block label="immich.users" value={immichData.usageByUser.length} />
<Block label="immich.photos" value={immichData.photos} />
<Block label="immich.videos" value={immichData.videos} />
<Block label="immich.users" value={t("common.number", { value: immichData.usageByUser.length })} />
<Block label="immich.photos" value={t("common.number", { value: immichData.photos })} />
<Block label="immich.videos" value={t("common.number", { value: immichData.videos })} />
<Block
label="immich.storage"
value={

Loading…
Cancel
Save