mirror of
https://github.com/ansible/awx.git
synced 2026-03-06 19:21:06 -03:30
Switch Array.map() in favor of Array.forEach()
This commit is contained in:
committed by
Matthew Jones
parent
f9265ee329
commit
d4a461e5b4
@@ -56,7 +56,7 @@ function InstanceListPolicyController ($scope, $state, strings) {
|
||||
form.components
|
||||
.filter(component => component.category === 'input')
|
||||
.filter(component => component.state.id === 'policy_instance_list')
|
||||
.map(component => {
|
||||
.forEach(component => {
|
||||
component.state._value = vm.selectedRows;
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user