Add space in classes and remove unnecessary div

This commit is contained in:
leigh-mil 2019-01-25 11:24:08 -05:00
parent a2b9526cd4
commit 3b2349d554
2 changed files with 11 additions and 13 deletions

View File

@ -27,7 +27,7 @@
inline-template> inline-template>
<div <div
class='{% if disabled %}input--disabled{% endif %}{{ classes }}' class='{% if disabled %}input--disabled{% endif %} {{ classes }}'
v-bind:class="['usa-input usa-input--validation--' + validation, { 'usa-input--error': showError, 'usa-input--success': showValid, 'usa-input--validation--paragraph': paragraph, 'no-max-width': noMaxWidth }]"> v-bind:class="['usa-input usa-input--validation--' + validation, { 'usa-input--error': showError, 'usa-input--success': showValid, 'usa-input--validation--paragraph': paragraph, 'no-max-width': noMaxWidth }]">
<label for={{field.name}}> <label for={{field.name}}>

View File

@ -51,7 +51,6 @@
<hr> <hr>
<div class="">
<h3 class="subheading">{{ "task_orders.new.funding.cloud_calculations_title" | translate }}</h3> <h3 class="subheading">{{ "task_orders.new.funding.cloud_calculations_title" | translate }}</h3>
<p>{{ "task_orders.new.funding.cloud_calculations_paragraph" | translate }}</p> <p>{{ "task_orders.new.funding.cloud_calculations_paragraph" | translate }}</p>
@ -65,7 +64,6 @@
{{ TextInput(form.clin_03, validation='dollars', tooltip='The cloud support and assistance packages cannot be used as a primary development resource.', placeholder="$0.00") }} {{ TextInput(form.clin_03, validation='dollars', tooltip='The cloud support and assistance packages cannot be used as a primary development resource.', placeholder="$0.00") }}
{{ TextInput(form.clin_04, validation='dollars', tooltip='The cloud support and assistance packages cannot be used as a primary development resource.', placeholder="$0.00", disabled=(not config.CLASSIFIED)) }} {{ TextInput(form.clin_04, validation='dollars', tooltip='The cloud support and assistance packages cannot be used as a primary development resource.', placeholder="$0.00", disabled=(not config.CLASSIFIED)) }}
</div> </div>
</div>
</funding> </funding>
{% endblock %} {% endblock %}