mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(core, editor): prevent overlapping runData and pinData (#4323)
🐛 Prevent overlapping `runData` and `pinData`
This commit is contained in:
@@ -959,6 +959,10 @@ export default mixins(
|
||||
return option + this.$locale.baseText('ndv.output.of') + (this.maxRunIndex+1) + itemsLabel;
|
||||
},
|
||||
getDataCount(runIndex: number, outputIndex: number) {
|
||||
if (this.pinData) {
|
||||
return this.pinData.length;
|
||||
}
|
||||
|
||||
if (this.node === null) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user