update labels for Style Only and CompositionOnly to be designated as beta

This commit is contained in:
Mary Hipp 2024-04-16 16:21:12 -04:00 committed by psychedelicious
parent c828a4e59f
commit 73ad173c74
2 changed files with 3 additions and 2 deletions

View File

@ -69,6 +69,7 @@
"auto": "Auto", "auto": "Auto",
"back": "Back", "back": "Back",
"batch": "Batch Manager", "batch": "Batch Manager",
"beta": "Beta",
"cancel": "Cancel", "cancel": "Cancel",
"copy": "Copy", "copy": "Copy",
"copyError": "$t(gallery.copy) Error", "copyError": "$t(gallery.copy) Error",

View File

@ -23,8 +23,8 @@ const ParamControlAdapterIPMethod = ({ id }: Props) => {
const options: { label: string; value: IPMethod }[] = useMemo( const options: { label: string; value: IPMethod }[] = useMemo(
() => [ () => [
{ label: t('controlnet.full'), value: 'full' }, { label: t('controlnet.full'), value: 'full' },
{ label: t('controlnet.style'), value: 'style' }, { label: `${t('controlnet.style')} (${t('common.beta')})`, value: 'style' },
{ label: t('controlnet.composition'), value: 'composition' }, { label: `${t('controlnet.composition')} (${t('common.beta')})`, value: 'composition' },
], ],
[t] [t]
); );