mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
fix infinite loop (#5600)
This commit is contained in:
@@ -41,7 +41,7 @@
|
||||
value: value ?? initialValue,
|
||||
label: value ?? initialValue,
|
||||
type: valueType
|
||||
}
|
||||
}
|
||||
: undefined
|
||||
|
||||
$: if (value === undefined && initialValue) {
|
||||
@@ -97,7 +97,9 @@
|
||||
|
||||
$: $workspaceStore && loadResources(resourceType)
|
||||
|
||||
$: dispatch('change', value)
|
||||
let oldValue = value
|
||||
$: (oldValue !== value) && dispatch('change', (oldValue = value))
|
||||
|
||||
|
||||
let appConnect: AppConnect
|
||||
let resourceEditor: ResourceEditorDrawer
|
||||
|
||||
Reference in New Issue
Block a user