diff --git a/packages/node_modules/@node-red/nodes/core/function/10-switch.html b/packages/node_modules/@node-red/nodes/core/function/10-switch.html index 7b28976b0..f89288afa 100644 --- a/packages/node_modules/@node-red/nodes/core/function/10-switch.html +++ b/packages/node_modules/@node-red/nodes/core/function/10-switch.html @@ -237,13 +237,13 @@ function createTypeValueField(){ return $('',{class:"node-input-rule-type-value",type:"text",style:"margin-left: 5px;"}).appendTo(row).typedInput({default:'string',types:[ - {value:"string",label:RED._("node-red:switch.label.string"),hasValue:false}, - {value:"number",label:RED._("node-red:switch.label.number"),hasValue:false}, - {value:"boolean",label:RED._("node-red:switch.label.boolean"),hasValue:false}, - {value:"array",label:RED._("node-red:switch.label.array"),hasValue:false}, - {value:"buffer",label:RED._("node-red:switch.label.buffer"),hasValue:false}, - {value:"object",label:RED._("node-red:switch.label.object"),hasValue:false}, - {value:"json",label:RED._("node-red:switch.label.jsonString"),hasValue:false}, + {value:"string",label:RED._("node-red:switch.label.string"),hasValue:false,icon:"red/images/typedInput/az.png"}, + {value:"number",label:RED._("node-red:switch.label.number"),hasValue:false,icon:"red/images/typedInput/09.png"}, + {value:"boolean",label:RED._("node-red:switch.label.boolean"),hasValue:false,icon:"red/images/typedInput/bool.png"}, + {value:"array",label:RED._("node-red:switch.label.array"),hasValue:false,icon:"red/images/typedInput/json.png"}, + {value:"buffer",label:RED._("node-red:switch.label.buffer"),hasValue:false,icon:"red/images/typedInput/bin.png"}, + {value:"object",label:RED._("node-red:switch.label.object"),hasValue:false,icon:"red/images/typedInput/json.png"}, + {value:"json",label:RED._("node-red:switch.label.jsonString"),hasValue:false,icon:"red/images/typedInput/json.png"}, {value:"undefined",label:RED._("node-red:switch.label.undefined"),hasValue:false}, {value:"null",label:RED._("node-red:switch.label.null"),hasValue:false} ]});