fix(editor): Fix copy selection behavior (#6112)

🐛 Fix copy selection behavior
This commit is contained in:
Iván Ovejero
2023-05-02 09:39:09 +02:00
committed by GitHub
parent c99f158120
commit 1607aeb9f9
2 changed files with 17 additions and 6 deletions

View File

@@ -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',
};