mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(editor): Experimental feature flag to show node settings in the canvas (no-changelog) (#15925)
This commit is contained in:
@@ -65,6 +65,7 @@ const props = withDefaults(
|
||||
blockUI: boolean;
|
||||
executable: boolean;
|
||||
inputSize: number;
|
||||
activeNode?: INodeUi;
|
||||
}>(),
|
||||
{
|
||||
foreignCredentials: () => [],
|
||||
@@ -129,7 +130,7 @@ const isHomeProjectTeam = computed(
|
||||
const isReadOnly = computed(
|
||||
() => props.readOnly || (hasForeignCredential.value && !isHomeProjectTeam.value),
|
||||
);
|
||||
const node = computed(() => ndvStore.activeNode);
|
||||
const node = computed(() => props.activeNode ?? ndvStore.activeNode);
|
||||
|
||||
const isTriggerNode = computed(() => !!node.value && nodeTypesStore.isTriggerNode(node.value.type));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user