mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix: IP Adapter Method having incorrect informational popover
This commit is contained in:
parent
ac1071a5e5
commit
a35386f24c
@ -1183,6 +1183,10 @@
|
|||||||
"heading": "Resize Mode",
|
"heading": "Resize Mode",
|
||||||
"paragraphs": ["Method to fit Control Adapter's input image size to the output generation size."]
|
"paragraphs": ["Method to fit Control Adapter's input image size to the output generation size."]
|
||||||
},
|
},
|
||||||
|
"ipAdapterMethod": {
|
||||||
|
"heading": "Method",
|
||||||
|
"paragraphs": ["Method by which to apply the current IP Adapter."]
|
||||||
|
},
|
||||||
"controlNetWeight": {
|
"controlNetWeight": {
|
||||||
"heading": "Weight",
|
"heading": "Weight",
|
||||||
"paragraphs": [
|
"paragraphs": [
|
||||||
|
@ -24,6 +24,7 @@ export type Feature =
|
|||||||
| 'dynamicPromptsSeedBehaviour'
|
| 'dynamicPromptsSeedBehaviour'
|
||||||
| 'imageFit'
|
| 'imageFit'
|
||||||
| 'infillMethod'
|
| 'infillMethod'
|
||||||
|
| 'ipAdapterMethod'
|
||||||
| 'lora'
|
| 'lora'
|
||||||
| 'loraWeight'
|
| 'loraWeight'
|
||||||
| 'noiseUseCPU'
|
| 'noiseUseCPU'
|
||||||
|
@ -52,7 +52,7 @@ const ParamControlAdapterIPMethod = ({ id }: Props) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<FormControl>
|
<FormControl>
|
||||||
<InformationalPopover feature="controlNetResizeMode">
|
<InformationalPopover feature="ipAdapterMethod">
|
||||||
<FormLabel>{t('controlnet.ipAdapterMethod')}</FormLabel>
|
<FormLabel>{t('controlnet.ipAdapterMethod')}</FormLabel>
|
||||||
</InformationalPopover>
|
</InformationalPopover>
|
||||||
<Combobox value={value} options={options} isDisabled={!isEnabled} onChange={handleIPMethodChanged} />
|
<Combobox value={value} options={options} isDisabled={!isEnabled} onChange={handleIPMethodChanged} />
|
||||||
|
Loading…
Reference in New Issue
Block a user