mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-30 05:42:00 -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
|
||||
parameters?: any; // tslint:disable-line:no-any
|
||||
uuid?: string;
|
||||
enabled?: boolean;
|
||||
}
|
||||
|
||||
export interface IConnectionsUi {
|
||||
|
|
|
@ -257,8 +257,9 @@ export const nodeBase = mixins(
|
|||
endpoint: inputData.endpoint,
|
||||
endpointStyle: inputData.endpointStyle,
|
||||
endpointHoverStyle: inputData.endpointHoverStyle,
|
||||
isSource: !this.isReadOnly,
|
||||
isSource: true,
|
||||
isTarget: false,
|
||||
enabled: !this.isReadOnly,
|
||||
parameters: {
|
||||
nodeIndex: this.nodeIndex,
|
||||
type: inputName,
|
||||
|
|
Loading…
Reference in a new issue