mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): Rename Aspect Ratio labels to their aspect ratios
This commit is contained in:
parent
761fc4beb8
commit
f5139b174a
@ -7,9 +7,9 @@ import { activeTabNameSelector } from '../../../../ui/store/uiSelectors';
|
|||||||
|
|
||||||
const aspectRatios = [
|
const aspectRatios = [
|
||||||
{ name: 'Free', value: null },
|
{ name: 'Free', value: null },
|
||||||
{ name: 'Portrait', value: 0.67 / 1 },
|
{ name: '2:3', value: 2 / 3 },
|
||||||
{ name: 'Wide', value: 16 / 9 },
|
{ name: '16:9', value: 16 / 9 },
|
||||||
{ name: 'Square', value: 1 / 1 },
|
{ name: '1:1', value: 1 / 1 },
|
||||||
];
|
];
|
||||||
|
|
||||||
export default function ParamAspectRatio() {
|
export default function ParamAspectRatio() {
|
||||||
|
Loading…
Reference in New Issue
Block a user