mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(editor): Showing string numbers and null properly in JSON view (#4513)
* fix(editor): update `vue-json-pretty` package * fix(editor): JSON view show string numbers and null properly * fix(editor): testing if RunDataJson.vue display the values according to its type * chore(editor): resolve package-lock.json conflict * fix(editor): using @pinia/testing library to mock pinia store * chore: fix package-lock.json after merge conflicts
This commit is contained in:
@@ -371,14 +371,15 @@ import { pinData } from '@/components/mixins/pinData';
|
||||
import { CodeEditor } from "@/components/forms";
|
||||
import { dataPinningEventBus } from '@/event-bus/data-pinning-event-bus';
|
||||
import { clearJsonKey, executionDataToJson, stringSizeInBytes } from './helpers';
|
||||
import RunDataTable from './RunDataTable.vue';
|
||||
import RunDataJson from '@/components/RunDataJson.vue';
|
||||
import { isEmpty } from '@/utils';
|
||||
import { useWorkflowsStore } from "@/stores/workflows";
|
||||
import { mapStores } from "pinia";
|
||||
import { useNDVStore } from "@/stores/ndv";
|
||||
import { useNodeTypesStore } from "@/stores/nodeTypes";
|
||||
|
||||
const RunDataTable = () => import('@/components/RunDataTable.vue');
|
||||
const RunDataJson = () => import('@/components/RunDataJson.vue');
|
||||
|
||||
export type EnterEditModeArgs = {
|
||||
origin: 'editIconButton' | 'insertTestDataLink',
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user