mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(editor): block UI in NDV when workflow is listening to events (#4390)
* feature: block UI in NDV when workflow is listening to events * feature: hide stop listening button in parameters pane and show stop listening button in input pane for webhook * feature: create block UI design system component * fix: add back accidentally removed prop * fix(editor): extend node settings event listener button functionality * refactor(editor): using composition API in BlockUi component
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
:executingMessage="$locale.baseText('ndv.output.executing')"
|
||||
:sessionId="sessionId"
|
||||
:isReadOnly="isReadOnly"
|
||||
:blockUI="blockUI"
|
||||
paneType="output"
|
||||
@runChange="onRunIndexChange"
|
||||
@linkRun="onLinkRun"
|
||||
@@ -109,6 +110,10 @@ export default mixins(
|
||||
sessionId: {
|
||||
type: String,
|
||||
},
|
||||
blockUI: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
node(): INodeUi {
|
||||
|
||||
Reference in New Issue
Block a user