fixed issue with editing multiselect

the multiselect was not updating the default value.
This commit is contained in:
Jared Tabor 2014-10-14 17:10:00 -04:00
parent 21e4afca14
commit beb4602933

View File

@ -666,9 +666,11 @@ angular.module('SurveyHelper', [ 'Utilities', 'RestServices', 'SchedulesHelper',
data.default = scope.default_int;
}
}
else if(fld==='default_multiselect'){
data.default = scope.default_multiselect;
}
else{
data[fld] = scope[fld];
}
}