mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix executions bug
This commit is contained in:
parent
551177565d
commit
ce5ea8c1d7
|
@ -101,6 +101,7 @@ export interface IEndpointOptions {
|
||||||
overlays?: any; // tslint:disable-line:no-any
|
overlays?: any; // tslint:disable-line:no-any
|
||||||
parameters?: any; // tslint:disable-line:no-any
|
parameters?: any; // tslint:disable-line:no-any
|
||||||
uuid?: string;
|
uuid?: string;
|
||||||
|
enabled?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IConnectionsUi {
|
export interface IConnectionsUi {
|
||||||
|
|
|
@ -257,8 +257,9 @@ export const nodeBase = mixins(
|
||||||
endpoint: inputData.endpoint,
|
endpoint: inputData.endpoint,
|
||||||
endpointStyle: inputData.endpointStyle,
|
endpointStyle: inputData.endpointStyle,
|
||||||
endpointHoverStyle: inputData.endpointHoverStyle,
|
endpointHoverStyle: inputData.endpointHoverStyle,
|
||||||
isSource: !this.isReadOnly,
|
isSource: true,
|
||||||
isTarget: false,
|
isTarget: false,
|
||||||
|
enabled: !this.isReadOnly,
|
||||||
parameters: {
|
parameters: {
|
||||||
nodeIndex: this.nodeIndex,
|
nodeIndex: this.nodeIndex,
|
||||||
type: inputName,
|
type: inputName,
|
||||||
|
|
Loading…
Reference in a new issue