Browse Source

UI-2562: Fix CSS selector to populate key value + generate it automatically depending on key type

4.3
Joris Tirado 9 years ago
parent
commit
c0807e85ed
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      submodules/devices/devices.js

+ 1
- 1
submodules/devices/devices.js View File

@ -324,7 +324,7 @@ define(function(require){
templateDevice templateDevice
.find(section.concat(group, value)) .find(section.concat(group, value))
.addClass('active') .addClass('active')
.find('[name="provision.feature_keys[' + key + '].value"]')
.find('[name="provision.keys.' + value.id + '[' + key + '].value"]')
.val(val.value); .val(val.value);
}); });
}); });


Loading…
Cancel
Save