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

View File

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