mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 04:31:21 -03:30
disable prompt-on-launch when input source is set
This commit is contained in:
parent
e0d61cfb8e
commit
e14f17687c
@ -6,6 +6,7 @@
|
||||
<div ng-if="state._displayPromptOnLaunch" class="at-InputLabel-checkbox pull-right">
|
||||
<label class="at-InputLabel-checkboxLabel">
|
||||
<input type="checkbox"
|
||||
ng-disabled="state.asTag"
|
||||
ng-model="state._promptOnLaunch"
|
||||
ng-change="vm.togglePromptOnLaunch()" />
|
||||
<p>{{:: vm.strings.get('label.PROMPT_ON_LAUNCH') }}</p>
|
||||
|
||||
@ -27,7 +27,7 @@
|
||||
ng-class="{ 'at-Input--rejected': state._rejected }"
|
||||
ng-attr-maxlength="{{ state.max_length || undefined }}"
|
||||
ng-attr-tabindex="{{ tab || undefined }}"
|
||||
ng-attr-placeholder="{{state._placeholder || undefined }}"
|
||||
ng-attr-placeholder="{{ state._promptOnLaunch ? '' : state._placeholder || undefined }}"
|
||||
ng-change="vm.check()"
|
||||
ng-disabled="state._disabled || form.disabled"
|
||||
/>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user