Update disabled styles on edit app environments

This commit is contained in:
Patrick Smith
2019-02-10 14:07:12 -05:00
parent 4e466af009
commit fe6a14d3ce
2 changed files with 7 additions and 2 deletions

View File

@@ -25,9 +25,9 @@
<ul>
{% for environment in application.environments %}
<li class="application-edit__env-list-item">
<div class="usa-input">
<div class="usa-input input--disabled">
<label>Environment Name</label>
<input type="text" value="{{ environment.name }}" readonly />
<input type="text" disabled value="{{ environment.name }}" readonly />
</div>
</li>
{% endfor %}