Skip to content

Commit

Permalink
Fixed a bug where admin screen didn't load the IsRequired setting on …
Browse files Browse the repository at this point in the history
…Bundle Options. (#3014)
  • Loading branch information
rfeese authored and fballiano committed Feb 7, 2023
1 parent 7341fc7 commit b2d36eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Bundle.Option.prototype = {
}

//set selected is_require
if (data.required) {
if (typeof data.required !== 'undefined') {
$A($(this.idLabel + '_'+data.index+'_required').options).each(function(option){
if (option.value==data.required) option.selected = true;
});
Expand Down

0 comments on commit b2d36eb

Please sign in to comment.