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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.isValidPinDataSize(this.inputData)) {
|
if (!this.isValidPinDataSize(this.rawInputData)) {
|
||||||
this.onDataPinningError({ errorType: 'data-too-large', source: 'pin-icon-click' });
|
this.onDataPinningError({ errorType: 'data-too-large', source: 'pin-icon-click' });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.onDataPinningSuccess({ source: 'pin-icon-click' });
|
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) {
|
if (this.maxRunIndex > 0) {
|
||||||
this.showToast({
|
this.showToast({
|
||||||
|
|||||||
Reference in New Issue
Block a user