mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Fixes progress images select
This commit is contained in:
parent
7e55bdefce
commit
5afff65b71
@ -20,6 +20,7 @@ import { persistor } from '../../../main';
|
||||
import {
|
||||
setShouldConfirmOnDelete,
|
||||
setShouldDisplayGuides,
|
||||
setShouldDisplayInProgressType,
|
||||
SystemState,
|
||||
} from '../systemSlice';
|
||||
import ModelList from './ModelList';
|
||||
@ -112,6 +113,9 @@ const SettingsModal = ({ children }: SettingsModalProps) => {
|
||||
label={'Display In-Progress Images'}
|
||||
validValues={IN_PROGRESS_IMAGE_TYPES}
|
||||
value={shouldDisplayInProgressType}
|
||||
onChange={(e: ChangeEvent<HTMLSelectElement>) =>
|
||||
dispatch(setShouldDisplayInProgressType(e.target.value))
|
||||
}
|
||||
/>
|
||||
|
||||
<IAISwitch
|
||||
|
Loading…
Reference in New Issue
Block a user