* Rebuilt frontend, more webui bit-rot.

This commit is contained in:
Peter Baylies 2022-10-03 23:56:50 -04:00
parent f041510659
commit ef20df8933
5 changed files with 503 additions and 1193 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

483
frontend/dist/assets/index.e1a7d3d5.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,14 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>InvokeAI Stable Diffusion Dream Server</title>
<script type="module" crossorigin src="/assets/index.38000181.js"></script>
<link rel="stylesheet" href="/assets/index.447eb2a9.css">
</head>
<body>
<div id="root"></div>
</body>
</html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>InvokeAI - A Stable Diffusion Toolkit</title>
<link rel="shortcut icon" type="icon" href="/assets/favicon.0d253ced.ico" />
<script type="module" crossorigin src="/assets/index.e1a7d3d5.js"></script>
<link rel="stylesheet" href="/assets/index.853a336f.css">
</head>
<body>
<div id="root"></div>
</body>
</html>

View File

@ -82,21 +82,21 @@ const SamplerOptions = () => {
onChange={handleChangeSampler}
validValues={SAMPLERS}
/>
<SDNumberInput
{/* <IAINumberInput
label='Threshold'
min={0}
step={0.1}
onChange={handleChangeThreshold}
value={threshold}
/>
<SDNumberInput
/> */}
{/* <IAINumberInput
label='Perlin'
min={0}
max={1}
step={0.05}
onChange={handleChangePerlin}
value={perlin}
/>
/> */}
</Flex>
);
};