diff --git a/src/lib/components/chat/Settings/Valves.svelte b/src/lib/components/chat/Settings/Valves.svelte
index f41d0e672..115dd3bd1 100644
--- a/src/lib/components/chat/Settings/Valves.svelte
+++ b/src/lib/components/chat/Settings/Valves.svelte
@@ -189,7 +189,13 @@
}}
>
{#if (valves[property] ?? null) === null}
- {$i18n.t('None')}
+
+ {#if (valvesSpec?.required ?? []).includes(property)}
+ {$i18n.t('None')}
+ {:else}
+ {$i18n.t('Default')}
+ {/if}
+
{:else}
{$i18n.t('Custom')}
{/if}