Skip to content

Commit

Permalink
fix(gui): send correct values for upscale order
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Mar 3, 2023
1 parent 22e9d54 commit d0b8045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/components/control/UpscaleControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export function UpscaleControl() {
}}
>
{Object.entries(params.upscaleOrder.keys).map(([key, name]) =>
<MenuItem key={key} value={key}>{t(`upscaleOrder.${name}`)}</MenuItem>)
<MenuItem key={key} value={name}>{t(`upscaleOrder.${name}`)}</MenuItem>)
}
</Select>
</FormControl>
Expand Down

0 comments on commit d0b8045

Please sign in to comment.