Revert "Merge pull request #2328 from kazuhitoyokoi/master-fixsubflowlang"

This reverts commit 873bdc6733, reversing
changes made to 8a40b075b5.
pull/2334/head
Kazuhito Yokoi 2019-10-17 21:05:06 +09:00
parent 873bdc6733
commit e10dd54e2b
1 changed files with 2 additions and 2 deletions

View File

@ -806,12 +806,12 @@ RED.subflow = (function() {
locales.val(currentLocale);
locales.on("change", function() {
var locale = $(this).val();
currentLocale = $(this).val();
var items = $("#node-input-env-container").editableList("items");
items.each(function (i, item) {
var entry = $(this).data('data');
var labelField = entry.ui.labelField;
labelField.val(lookupLabel(entry.ui.label, "", locale));
labelField.val(lookupLabel(entry.ui.label, "", currentLocale));
if (labelField.timeout) {
clearTimeout(labelField.timeout);
delete labelField.timeout;