mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
add placeholder for env var name
This commit is contained in:
parent
a413f3cded
commit
2b43e3ee23
@ -902,6 +902,7 @@
|
||||
"properties": "Properties",
|
||||
"description": "Description",
|
||||
"appearance": "Appearance",
|
||||
"env": "Env Var"
|
||||
"env": "Env Var",
|
||||
"name": "name"
|
||||
}
|
||||
}
|
||||
|
@ -902,6 +902,7 @@
|
||||
"properties": "プロパティ",
|
||||
"description": "説明",
|
||||
"appearance": "外観",
|
||||
"env": "環境変数"
|
||||
"env": "環境変数",
|
||||
"name": "変数名"
|
||||
}
|
||||
}
|
||||
|
@ -550,7 +550,8 @@ RED.editor = (function() {
|
||||
var nameField = $('<input/>', {
|
||||
class: "node-input-env-name",
|
||||
type: "text",
|
||||
style: "margin-length: 5px; width: 32%;"
|
||||
style: "margin-length: 5px; width: 32%;",
|
||||
placeholder: RED._("editor-tab.name")
|
||||
}).appendTo(row);
|
||||
var valueField = $('<input/>',{
|
||||
class: "node-input-env-value",
|
||||
|
Loading…
Reference in New Issue
Block a user