From f7863e17ced4ff22005d768e2e66da048b2db9df Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 6 Aug 2024 11:46:24 +1000 Subject: [PATCH] docs(ui): add docstring for maxUpscaleDimension --- invokeai/frontend/web/src/app/types/invokeai.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/invokeai/frontend/web/src/app/types/invokeai.ts b/invokeai/frontend/web/src/app/types/invokeai.ts index 901cfdf759..7de441699a 100644 --- a/invokeai/frontend/web/src/app/types/invokeai.ts +++ b/invokeai/frontend/web/src/app/types/invokeai.ts @@ -65,6 +65,10 @@ export type AppConfig = { */ shouldUpdateImagesOnConnect: boolean; shouldFetchMetadataFromApi: boolean; + /** + * Sets a size limit for outputs on the upscaling tab. This is a maximum dimension, so the actual max number of pixels + * will be the square of this value. + */ maxUpscaleDimension?: number; allowPrivateBoards: boolean; disabledTabs: InvokeTabName[];