Add env type to subflow env var types

Also remove date and regex types
This commit is contained in:
Nick O'Leary
2019-02-06 13:58:31 +00:00
parent 2a8f0a4eab
commit d48a09e68b
3 changed files with 10 additions and 13 deletions

View File

@@ -570,7 +570,7 @@ RED.editor = (function() {
}).appendTo(row)
valueField.typedInput({default:'str',
types:['str','num','bool','json','bin','re','date']
types:['str','num','bool','json','bin','env']
});
valueField.typedInput('type', opt.parent?(opt.type||opt.parent.type):opt.type);