mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-12-30 19:08:55 +01:00
add default values to false
This commit is contained in:
parent
319f08c4c9
commit
62fe380520
@ -70,6 +70,8 @@ export interface ImageRequest {
|
||||
init_image: undefined | string;
|
||||
prompt_strength: undefined | number;
|
||||
sampler: typeof SAMPLER_OPTIONS[number];
|
||||
stream_progress_updates: boolean;
|
||||
stream_image_progress: boolean;
|
||||
}
|
||||
|
||||
type ModifiersList = string[];
|
||||
@ -134,6 +136,8 @@ export const useImageCreate = create<ImageCreateState>(
|
||||
show_only_filtered_image: true,
|
||||
init_image: undefined,
|
||||
sampler: "plms",
|
||||
stream_progress_updates: false,
|
||||
stream_image_progress: false
|
||||
},
|
||||
|
||||
// selected tags
|
||||
|
Loading…
Reference in New Issue
Block a user