update typos from eumn to enum

update typos in the karbor-dashboard.

Change-Id: I2ce0e2f846864e04dcb060c0774f2c99ac95d0c1
This commit is contained in:
xiangxinyong 2016-09-05 20:19:42 +08:00
parent 1bf43d0056
commit db3554141f
1 changed files with 3 additions and 3 deletions

View File

@ -84,9 +84,9 @@
dropdownlist_control.attr("name", p);
//get drop down list options
for(option in property.eumn) {
var option_control = $("<option/>").attr('value', property.eumn[option])
.html(property.eumn[option]);
for(option in property.enum) {
var option_control = $("<option/>").attr('value', property.enum[option])
.html(property.enum[option]);
dropdownlist_control.append(option_control);
}