mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-21 21:22:11 -03:00
11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
export const state = {
|
|
currentPage: 1,
|
|
isLoading: false,
|
|
hasMore: true,
|
|
sortBy: 'name',
|
|
activeFolder: null,
|
|
loadingManager: null,
|
|
observer: null,
|
|
previewVersions: new Map(),
|
|
searchManager: null // 添加 searchManager
|
|
}; |