make show unvalidated models clickable (#680)

This commit is contained in:
Vishakha Agrawal
2026-02-07 07:06:13 +05:30
committed by GitHub
parent ecce0a96c7
commit d752524851

View File

@@ -1661,12 +1661,16 @@ export function ModelConfigDialog({
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<Switch
id="show-unvalidated-models"
checked={modelConfig.showUnvalidatedModels}
onCheckedChange={
modelConfig.setShowUnvalidatedModels
}
/>
<Label className="text-xs text-muted-foreground cursor-pointer">
<Label
htmlFor="show-unvalidated-models"
className="text-xs text-muted-foreground cursor-pointer"
>
{dict.modelConfig.showUnvalidatedModels}
</Label>
</div>