1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

Merge pull request #215 from jlmitch5/jlm_511--inv_sources_options_change

fix options request parsing for church's changes to API
This commit is contained in:
jlmitch5 2015-05-18 13:07:28 -04:00
commit 3166b12cea

View File

@ -44,8 +44,8 @@ angular.module('GroupsHelper', [ 'RestServices', 'Utilities', listGenerator.name
for (i = 0; i < choices.length; i++) { for (i = 0; i < choices.length; i++) {
if (choices[i][0] !== 'file') { if (choices[i][0] !== 'file') {
scope[variable].push({ scope[variable].push({
label: ((choices[i][0] === '') ? 'Manual' : choices[i][1]), label: choices[i][1],
value: (choices[i][0] === '') ? 'manual' : choices[i][0] value: choices[i][0]
}); });
} }
} }