mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-26 01:09:46 +00:00
Fix remote widget undefined arg (#2551)
This commit is contained in:
@@ -15,7 +15,7 @@ export const useComboWidget = () => {
|
||||
inputData: InputSpec
|
||||
) => {
|
||||
const widgetStore = useWidgetStore()
|
||||
const { remote, options } = inputData[1]
|
||||
const { remote, options } = inputData[1] || {}
|
||||
const defaultValue = widgetStore.getDefaultValue(inputData)
|
||||
|
||||
const res = {
|
||||
|
||||
Reference in New Issue
Block a user