mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Pin all data regardless of pagination (#6346)
* fix(editor): pin all data * fix(editor): restore pinned data pagination
This commit is contained in:
@@ -1066,14 +1066,14 @@ export default defineComponent({
|
||||
return;
|
||||
}
|
||||
|
||||
if (!this.isValidPinDataSize(this.inputData)) {
|
||||
if (!this.isValidPinDataSize(this.rawInputData)) {
|
||||
this.onDataPinningError({ errorType: 'data-too-large', source: 'pin-icon-click' });
|
||||
return;
|
||||
}
|
||||
|
||||
this.onDataPinningSuccess({ source: 'pin-icon-click' });
|
||||
|
||||
this.workflowsStore.pinData({ node: this.node, data: this.inputData });
|
||||
this.workflowsStore.pinData({ node: this.node, data: this.rawInputData });
|
||||
|
||||
if (this.maxRunIndex > 0) {
|
||||
this.showToast({
|
||||
|
||||
Reference in New Issue
Block a user