Skip to content

Commit

Permalink
make simple execution-prompts like 'limit' optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Jul 13, 2024
1 parent 6e9f1a4 commit 3b4a9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansibleguy-webui/aw/static/js/jobs/manage.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function buildExecutionFields(promptsSerialized) {
let fieldHtml = document.getElementById(tmplElem).innerHTML;
fieldHtml = fieldHtml.replaceAll('${PRETTY}', name);
fieldHtml = fieldHtml.replaceAll('${FIELD}', field);
fieldHtml = fieldHtml.replaceAll('${attrs}', 'required');
fieldHtml = fieldHtml.replaceAll('${attrs}', '');
prompts.push(fieldHtml);

} else {
Expand Down

0 comments on commit 3b4a9c9

Please sign in to comment.