This commit is contained in:
Kent Keirsey
2025-06-30 11:15:16 -04:00
committed by psychedelicious
parent 264cc5ef46
commit 8cd3bcd1c0
3 changed files with 5 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ const ParamTileControlNetModel = () => {
return (
<FormControl isDisabled={!options.length} isInvalid={!options.length} minW={0} flexGrow={1} gap={2}>
<FormLabel m={0}>{t('controlLayers.controlNet')}</FormLabel>
<FormLabel m={0}>{t('controlNet')}</FormLabel>
<Combobox value={value} options={options} onChange={onChange} noOptionsMessage={noOptionsMessage} />
</FormControl>
);