Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Settings/QuotasCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ function QuotasCard() {

<QuotaRow
icon={<HardDrive size="1.25rem" />}
label="Disk space"
label="Disk Space"
description="Blocks writes once overall disk usage exceeds this share of total disk space."
htmlFor="disk-quota"
enabled={draft.diskEnabled}
Expand All @@ -254,7 +254,7 @@ function QuotasCard() {
>
<PercentQuotaControl
id="disk-quota"
label="Disk space"
label="Disk Space"
value={draft.disk}
onChange={(value) => patch({ disk: value })}
disabled={!diskActive}
Expand Down
Loading