From 763d2fd24b0784aa28fc182be8b578537a6fb9a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Fri, 14 Oct 2022 10:17:53 +0200 Subject: [PATCH] fix(editor): fix data pinning success source (#4339) :bug: Fix data pinning success source --- packages/editor-ui/src/components/RunData.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/RunData.vue b/packages/editor-ui/src/components/RunData.vue index 92570ec96c..b4ac4e8496 100644 --- a/packages/editor-ui/src/components/RunData.vue +++ b/packages/editor-ui/src/components/RunData.vue @@ -845,7 +845,7 @@ export default mixins( return; } - this.onDataPinningSuccess({ source: 'save-edit' }); + this.onDataPinningSuccess({ source: 'pin-icon-click' }); this.$store.commit('pinData', { node: this.node, data });