Skip to content

Commit 843960a

Browse files
committed
MAGETWO-64153: Merge Pull Request #8246
2 parents 25396df + 16170ce commit 843960a

File tree

1 file changed

+5
-0
lines changed
  • app/code/Magento/Ui/view/base/web/js/form

1 file changed

+5
-0
lines changed

app/code/Magento/Ui/view/base/web/js/form/form.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ define([
5454
}
5555
break;
5656

57+
case 'select-multiple':
58+
var name = item.name.substring(0,(item.name.length - 2)); //remove [] from the name ending
59+
result[name] = _.pluck(item.selectedOptions, 'value');
60+
break;
61+
5762
default:
5863
result[item.name] = item.value;
5964
}

0 commit comments

Comments
 (0)