diff --git a/nodes/core/core/20-inject.html b/nodes/core/core/20-inject.html
index a7c6b9bc7..39e34b621 100644
--- a/nodes/core/core/20-inject.html
+++ b/nodes/core/core/20-inject.html
@@ -138,12 +138,13 @@
icon: "inject.png",
label: function() {
if (this.payloadType === "string") {
- if (this.topic !== "") {
- return this.name||this.topic +" : "+this.payload||this.topic;
- }
- else {
- return this.name||this.payload||this.topic||"inject";
- }
+ return this.name||this.topic||this.payload||"inject";
+ //if (this.topic !== "") {
+ // return this.name||this.topic +" : "+this.payload||this.topic;
+ //}
+ //else {
+ // return this.name||this.payload||this.topic||"inject";
+ //}
}
else { return this.name||this.topic||"inject"; }
},