mirror of
https://github.com/ansible/awx.git
synced 2026-05-10 19:07:36 -02:30
Quick fix to get adding inventory source nodes working within workflows
This commit is contained in:
@@ -182,9 +182,9 @@ angular.module('jobTemplates', [surveyMaker.name, jobTemplatesList.name, jobTemp
|
|||||||
|
|
||||||
$scope.toggle_inventory_source = function(id) {
|
$scope.toggle_inventory_source = function(id) {
|
||||||
|
|
||||||
$scope.inventory_sources.forEach(function(row, i) {
|
$scope.workflow_inventory_sources.forEach(function(row, i) {
|
||||||
if (row.id === id) {
|
if (row.id === id) {
|
||||||
$scope.inventory_sources[i].checked = 1;
|
$scope.workflow_inventory_sources[i].checked = 1;
|
||||||
$scope.selection[list.iterator] = {
|
$scope.selection[list.iterator] = {
|
||||||
id: row.id,
|
id: row.id,
|
||||||
name: row.name
|
name: row.name
|
||||||
|
|||||||
Reference in New Issue
Block a user