mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Fix copy selection behavior (#6112)
🐛 Fix copy selection behavior
This commit is contained in:
@@ -83,6 +83,7 @@ import { useNDVStore } from '@/stores/ndv';
|
||||
import MappingPill from './MappingPill.vue';
|
||||
import { getMappedExpression } from '@/utils/mappingUtils';
|
||||
import { useWorkflowsStore } from '@/stores/workflows';
|
||||
import { nonExistingJsonPath } from '@/components/RunDataJsonActions.vue';
|
||||
|
||||
const runDataJsonActions = () => import('@/components/RunDataJsonActions.vue');
|
||||
|
||||
@@ -125,7 +126,7 @@ export default mixins(externalHooks).extend({
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
selectedJsonPath: null as null | string,
|
||||
selectedJsonPath: nonExistingJsonPath,
|
||||
draggingPath: null as null | string,
|
||||
displayMode: 'json',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user