mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
👕 Fix lint issue
This commit is contained in:
parent
5a0d1bf993
commit
d74f0d9bbd
|
@ -50,6 +50,7 @@ declare module 'jsplumb' {
|
||||||
interface OnConnectionBindInfo {
|
interface OnConnectionBindInfo {
|
||||||
originalSourceEndpoint: Endpoint;
|
originalSourceEndpoint: Endpoint;
|
||||||
originalTargetEndpoint: Endpoint;
|
originalTargetEndpoint: Endpoint;
|
||||||
|
getParameters(): { index: number };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -502,7 +502,7 @@ export const store = new Vuex.Store({
|
||||||
state.lastSelectedNode = nodeName;
|
state.lastSelectedNode = nodeName;
|
||||||
},
|
},
|
||||||
|
|
||||||
setLastSelectedNodeOutputIndex(state, outputIndex: number | null) {
|
setLastSelectedNodeOutputIndex (state, outputIndex: number | null) {
|
||||||
state.lastSelectedNodeOutputIndex = outputIndex;
|
state.lastSelectedNodeOutputIndex = outputIndex;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue