mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 12:41:19 -03:30
Switch Array.map() in favor of Array.forEach()
This commit is contained in:
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;
|
||||
});
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user