mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
fix error handler sync issue
This commit is contained in:
@@ -21,12 +21,15 @@
|
||||
schema: emptySchema(),
|
||||
previewResult: NEVER_TESTED_THIS_FAR
|
||||
}
|
||||
$flowStateStore['failure'] = failureModule
|
||||
|
||||
$flowStore.value.failure_module = {
|
||||
id: 'failure',
|
||||
value: { type: 'identity' }
|
||||
}
|
||||
$flowStateStore['failure'] = failureModule
|
||||
|
||||
$selectedId = 'failure'
|
||||
$flowStore = $flowStore
|
||||
}
|
||||
}
|
||||
</script>
|
||||
@@ -49,7 +52,7 @@
|
||||
<div class=" flex justify-between items-center flex-wrap">
|
||||
<div>
|
||||
<Icon data={faBug} class="mr-2" />
|
||||
<span class="font-bold text-xs">Error handler</span>
|
||||
<span class="font-bold text-xs">Error Handler</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -61,6 +61,9 @@
|
||||
}
|
||||
|
||||
async function createGraph() {
|
||||
// console.log(JSON.stringify(modules))
|
||||
// return
|
||||
|
||||
if (modules) {
|
||||
idGenerator = createIdGenerator()
|
||||
} else {
|
||||
|
||||
@@ -36,10 +36,10 @@
|
||||
loadFilterFromUrl()
|
||||
|
||||
function loadFilterFromUrl() {
|
||||
console.log('LOAD')
|
||||
let queryValue = new URL(window.location.href).searchParams.get(queryName) ?? undefined
|
||||
selectedFilter = queryValue
|
||||
}
|
||||
|
||||
function getIconComponent(name: string) {
|
||||
return APP_TO_ICON_COMPONENT[name] || APP_TO_ICON_COMPONENT[name.split('_')[0]]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user