Skip to content

Commit a8bc6ab

Browse files
fix(ui): typos
1 parent bd91bd4 commit a8bc6ab

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

invokeai/frontend/web/public/locales/en.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,19 +1643,15 @@
16431643
},
16441644
"upscaling": {
16451645
"creativity": "Creativity",
1646-
"currentImageSize": "Current Image Size",
1647-
"outputImageSize": "Output Image Size",
1648-
"sharpness": "Sharpness",
16491646
"structure": "Structure",
16501647
"toInstall": "to install",
1651-
"upscaleModel": "Upcale Model",
1648+
"upscaleModel": "Upscale Model",
16521649
"scale": "Scale",
16531650
"visit": "Visit",
16541651
"warningNoMainModel": "a model",
16551652
"warningNoTile": "a {{base_model}} tile controlnet required by this feature",
16561653
"warningNoTileOrUpscaleModel": "an upscaler model and {{base_model}} tile controlnet required by this feature",
1657-
"warningNoUpscaleModel": "an upscaler model required by this feature",
1658-
"upscalingFromTo": "Upscaling from {{from}} to {{to}}"
1654+
"warningNoUpscaleModel": "an upscaler model required by this feature"
16591655
},
16601656
"ui": {
16611657
"tabs": {

invokeai/frontend/web/src/app/store/middleware/listenerMiddleware/listeners/enqueueRequestedUpscale.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { enqueueRequested } from 'app/store/actions';
22
import type { AppStartListening } from 'app/store/middleware/listenerMiddleware';
33
import { isImageViewerOpenChanged } from 'features/gallery/store/gallerySlice';
44
import { prepareLinearUIBatch } from 'features/nodes/util/graph/buildLinearBatchConfig';
5-
import { buildMultidiffusionUpscsaleGraph } from 'features/nodes/util/graph/buildMultidiffusionUpscaleGraph';
5+
import { buildMultidiffusionUpscaleGraph } from 'features/nodes/util/graph/buildMultidiffusionUpscaleGraph';
66
import { queueApi } from 'services/api/endpoints/queue';
77

88
export const addEnqueueRequestedUpscale = (startAppListening: AppStartListening) => {
@@ -14,7 +14,7 @@ export const addEnqueueRequestedUpscale = (startAppListening: AppStartListening)
1414
const { shouldShowProgressInViewer } = state.ui;
1515
const { prepend } = action.payload;
1616

17-
const graph = await buildMultidiffusionUpscsaleGraph(state);
17+
const graph = await buildMultidiffusionUpscaleGraph(state);
1818

1919
const batchConfig = prepareLinearUIBatch(state, graph, prepend);
2020

invokeai/frontend/web/src/features/nodes/util/graph/buildMultidiffusionUpscaleGraph.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { addLoRAs } from './generation/addLoRAs';
2424
import { addSDXLLoRas } from './generation/addSDXLLoRAs';
2525
import { getBoardField, getSDXLStylePrompts } from './graphBuilderUtils';
2626

27-
export const buildMultidiffusionUpscsaleGraph = async (state: RootState): Promise<GraphType> => {
27+
export const buildMultidiffusionUpscaleGraph = async (state: RootState): Promise<GraphType> => {
2828
const { model, cfgScale: cfg_scale, scheduler, steps, vaePrecision, seed, vae } = state.generation;
2929
const { positivePrompt, negativePrompt } = state.controlLayers.present;
3030
const { upscaleModel, upscaleInitialImage, structure, creativity, tileControlnetModel, scale } = state.upscale;

0 commit comments

Comments
 (0)