As I know, the sidebar is displaying node property. How can I change the appearance of the node property here without editing the default property node? For example
RED.nodes.registerType ("node-test", {
colorSvg: "url (# node-test)",
color:
"linear-gradient (to bottom, rgb (249,228,207) 0%, rgb (249,150.57) 100%)",
defaults: {
id: {
value: "",
},
name: {
value: "",
required: true,
}
});
When displayed at the property, it will display "Node + {name}", not only the name.

Thank you very much!