mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
feat(ui): add isLocal
flag to config
This commit is contained in:
parent
624d28a93d
commit
4a394c60cf
@ -74,6 +74,7 @@ export type AppConfig = {
|
|||||||
maxUpscalePixels?: number;
|
maxUpscalePixels?: number;
|
||||||
metadataFetchDebounce?: number;
|
metadataFetchDebounce?: number;
|
||||||
workflowFetchDebounce?: number;
|
workflowFetchDebounce?: number;
|
||||||
|
isLocal?: boolean;
|
||||||
sd: {
|
sd: {
|
||||||
defaultModel?: string;
|
defaultModel?: string;
|
||||||
disabledControlNetModels: string[];
|
disabledControlNetModels: string[];
|
||||||
|
@ -15,6 +15,7 @@ const baseDimensionConfig: NumericalParameterConfig = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const initialConfigState: AppConfig = {
|
const initialConfigState: AppConfig = {
|
||||||
|
isLocal: true,
|
||||||
shouldUpdateImagesOnConnect: false,
|
shouldUpdateImagesOnConnect: false,
|
||||||
shouldFetchMetadataFromApi: false,
|
shouldFetchMetadataFromApi: false,
|
||||||
disabledTabs: [],
|
disabledTabs: [],
|
||||||
|
Loading…
Reference in New Issue
Block a user