Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ui): fix refiner metadata #5996

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions invokeai/frontend/web/public/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,7 @@
"refiner": "Refiner",
"refinermodel": "Refiner Model",
"refinerStart": "Refiner Start",
"refinerSteps": "Refiner Steps",
"scheduler": "Scheduler",
"steps": "Steps"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,10 +247,11 @@ export const handlers = {
recaller: recallers.refinerCFGScale,
}),
refinerModel: buildHandlers({
getLabel: () => t('sdxl.refinerModel'),
getLabel: () => t('sdxl.refinermodel'),
parser: parsers.refinerModel,
recaller: recallers.refinerModel,
validator: validators.refinerModel,
renderValue: renderModelConfigValue,
}),
refinerNegativeAestheticScore: buildHandlers({
getLabel: () => t('sdxl.posAestheticScore'),
Expand All @@ -268,12 +269,12 @@ export const handlers = {
recaller: recallers.refinerScheduler,
}),
refinerStart: buildHandlers({
getLabel: () => t('sdxl.refiner_start'),
getLabel: () => t('sdxl.refinerStart'),
parser: parsers.refinerStart,
recaller: recallers.refinerStart,
}),
refinerSteps: buildHandlers({
getLabel: () => t('sdxl.refiner_steps'),
getLabel: () => t('sdxl.refinerSteps'),
parser: parsers.refinerSteps,
recaller: recallers.refinerSteps,
}),
Expand Down
Loading