diff --git a/package.json b/package.json index 6189911..e95909c 100644 --- a/package.json +++ b/package.json @@ -73,6 +73,7 @@ "svelte-tiny-virtual-list": "^2.0.5", "tailwindcss": "^3.3.1", "typed-emitter": "github:andywer/typed-emitter", + "uuid": "^9.0.0", "vite-plugin-full-reload": "^1.0.5" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 277a00d..0ecaee1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -115,6 +115,9 @@ importers: typed-emitter: specifier: github:andywer/typed-emitter version: github.com/andywer/typed-emitter/9a139b6fa0ec6b0db6141b5b756b784e4f7ef4e4 + uuid: + specifier: ^9.0.0 + version: 9.0.0 vite-plugin-full-reload: specifier: ^1.0.5 version: 1.0.5(vite@4.3.1) diff --git a/src/lib/nodes/ComfyBackendNode.ts b/src/lib/nodes/ComfyBackendNode.ts index 326664a..a75c968 100644 --- a/src/lib/nodes/ComfyBackendNode.ts +++ b/src/lib/nodes/ComfyBackendNode.ts @@ -7,7 +7,7 @@ import type IComfyInputSlot from "$lib/IComfyInputSlot"; import type { ComfyInputConfig } from "$lib/IComfyInputSlot"; /* - * Base class for any node wit configuration sent by the backend. + * Base class for any node with configuration sent by the backend. */ export class ComfyBackendNode extends ComfyGraphNode { comfyClass: string;