feat(core): Remove conditional defaults in V1 release (#6363)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-06-02 11:10:19 +00:00
committed by कारतोफ्फेलस्क्रिप्ट™
parent e152cfe27c
commit f6366160a4
6 changed files with 7 additions and 30 deletions

View File

@@ -12,7 +12,6 @@ import { JavaScriptSandbox } from './JavaScriptSandbox';
import { PythonSandbox } from './PythonSandbox';
import { getSandboxContext } from './Sandbox';
import { standardizeOutput } from './utils';
import { IS_V1_RELEASE } from '../../utils/constants';
export class Code implements INodeType {
description: INodeTypeDescription = {
@@ -21,7 +20,7 @@ export class Code implements INodeType {
icon: 'fa:code',
group: ['transform'],
version: [1, 2],
defaultVersion: IS_V1_RELEASE ? 2 : 1,
defaultVersion: 2,
description: 'Run custom JavaScript code',
defaults: {
name: 'Code',