mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
[WebUI] Fix Threshold and Perlin Noise Styling
This commit is contained in:
parent
461e662644
commit
542ee56c77
@ -1,5 +1,9 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { RootState, useAppDispatch, useAppSelector } from '../../../../app/store';
|
import {
|
||||||
|
RootState,
|
||||||
|
useAppDispatch,
|
||||||
|
useAppSelector,
|
||||||
|
} from '../../../../app/store';
|
||||||
import IAINumberInput from '../../../../common/components/IAINumberInput';
|
import IAINumberInput from '../../../../common/components/IAINumberInput';
|
||||||
import { setPerlin } from '../../optionsSlice';
|
import { setPerlin } from '../../optionsSlice';
|
||||||
|
|
||||||
@ -11,7 +15,7 @@ export default function Perlin() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<IAINumberInput
|
<IAINumberInput
|
||||||
label='Perlin'
|
label="Perlin Noise"
|
||||||
min={0}
|
min={0}
|
||||||
max={1}
|
max={1}
|
||||||
step={0.05}
|
step={0.05}
|
||||||
|
@ -16,11 +16,9 @@ const SeedOptions = () => {
|
|||||||
<Seed />
|
<Seed />
|
||||||
<ShuffleSeed />
|
<ShuffleSeed />
|
||||||
</Flex>
|
</Flex>
|
||||||
<Flex gap={2}>
|
|
||||||
<Threshold />
|
<Threshold />
|
||||||
<Perlin />
|
<Perlin />
|
||||||
</Flex>
|
</Flex>
|
||||||
</Flex>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user