UI improvements

This commit is contained in:
2021-04-25 23:54:43 +02:00
parent 1135dc91cc
commit ceb93e70e2
3 changed files with 11 additions and 5 deletions

View File

@@ -7,6 +7,7 @@ RED.nodes.registerType<Ts3ConfigEditorNodeProperties,Ts3ConfigCreds>('ts3-config
category: 'config',
color: '#a6bbcf',
defaults: {
name: {value:""},
host: { value: ""},
nickname: {value: "ServerQuery"}
},
@@ -15,6 +16,6 @@ RED.nodes.registerType<Ts3ConfigEditorNodeProperties,Ts3ConfigCreds>('ts3-config
password: {type: "password"}
},
label: function() {
return this.name || "Ts3 Config";
return this.name || "TS3 Config";
}
});