Skip to content

Commit

Permalink
Fix: Correct Synology DownloadStation units (#2249)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamoon authored Oct 27, 2023
1 parent bec1e5f commit 654f16d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widgets/downloadstation/component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ export default function Component({ service }) {
return (
<Container service={service}>
<Block label="downloadstation.leech" value={t("common.number", { value: leech })} />
<Block label="downloadstation.download" value={t("common.bitrate", { value: rateDl })} />
<Block label="downloadstation.download" value={t("common.byterate", { value: rateDl })} />
<Block label="downloadstation.seed" value={t("common.number", { value: completed })} />
<Block label="downloadstation.upload" value={t("common.bitrate", { value: rateUl })} />
<Block label="downloadstation.upload" value={t("common.byterate", { value: rateUl })} />
</Container>
);
}

0 comments on commit 654f16d

Please sign in to comment.