diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/editors/json.js b/packages/node_modules/@node-red/editor-client/src/js/ui/editors/json.js index 7cf1c6ec7..9ebb82b0b 100644 --- a/packages/node_modules/@node-red/editor-client/src/js/ui/editors/json.js +++ b/packages/node_modules/@node-red/editor-client/src/js/ui/editors/json.js @@ -301,9 +301,9 @@ var val = $('').css({width:w+"px"}).val(""+valValue).insertAfter(valueLabel).typedInput({ types:[ 'str','num','bool', - {value:"null",label:"null",hasValue:false}, - {value:"array",label:RED._("common.type.array"),hasValue:false}, - {value:"object",label:RED._("common.type.object"),hasValue:false} + {value:"null",label:RED._("common.type.null"),hasValue:false}, + {value:"array",label:RED._("common.type.array"),hasValue:false,icon:"red/images/typedInput/json.png"}, + {value:"object",label:RED._("common.type.object"),hasValue:false,icon:"red/images/typedInput/json.png"} ], default: valType });