From 552f49898a542ffddd2e483e12af4b356d631628 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Fri, 17 Jul 2026 23:32:13 +1200 Subject: [PATCH] fix(databases): clarify autoscaling max is an absolute cap (DAT-1770) The maximum storage input read as headroom above current storage; add helper text stating it is the absolute total size the volume may grow to, at which autoscaling stops. Co-Authored-By: Claude Opus 4.8 --- .../database-[database]/settings/updateAutoscaling.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/(console)/project-[region]-[project]/databases/database-[database]/settings/updateAutoscaling.svelte b/src/routes/(console)/project-[region]-[project]/databases/database-[database]/settings/updateAutoscaling.svelte index f803824e2d..3ff166543c 100644 --- a/src/routes/(console)/project-[region]-[project]/databases/database-[database]/settings/updateAutoscaling.svelte +++ b/src/routes/(console)/project-[region]-[project]/databases/database-[database]/settings/updateAutoscaling.svelte @@ -77,6 +77,7 @@ min={database.storage} max={10000} bind:value={maxGb} + helper="The maximum total size this database's storage can grow to. Autoscaling stops at this limit." required /> {/if}