mirror of
https://github.com/vndangkhoa/Sys-Arc-Visl.git
synced 2026-04-05 01:17:57 +07:00
fix: Update UI store types to include comfy tab
This commit is contained in:
parent
9d540468bd
commit
5051c0ff72
1 changed files with 2 additions and 2 deletions
|
|
@ -14,7 +14,7 @@ interface UIState {
|
||||||
|
|
||||||
// Input Panel persistence
|
// Input Panel persistence
|
||||||
inputDescription: string;
|
inputDescription: string;
|
||||||
inputActiveTab: 'image' | 'code' | 'describe';
|
inputActiveTab: 'image' | 'code' | 'describe' | 'comfy';
|
||||||
inputImageUrl: string | null;
|
inputImageUrl: string | null;
|
||||||
mermaidCode: string;
|
mermaidCode: string;
|
||||||
|
|
||||||
|
|
@ -37,7 +37,7 @@ interface UIState {
|
||||||
|
|
||||||
// Input Panel actions
|
// Input Panel actions
|
||||||
setInputDescription: (description: string) => void;
|
setInputDescription: (description: string) => void;
|
||||||
setInputActiveTab: (tab: 'image' | 'code' | 'describe') => void;
|
setInputActiveTab: (tab: 'image' | 'code' | 'describe' | 'comfy') => void;
|
||||||
setInputImageUrl: (url: string | null) => void;
|
setInputImageUrl: (url: string | null) => void;
|
||||||
setMermaidCode: (code: string) => void;
|
setMermaidCode: (code: string) => void;
|
||||||
clearInputs: () => void;
|
clearInputs: () => void;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue