Fix template and component so LOA values are posted through the form

This commit is contained in:
leigh-mil
2019-02-21 17:05:09 -05:00
parent f9b379c2f1
commit 68ab32d1d1
2 changed files with 11 additions and 5 deletions

View File

@@ -101,8 +101,8 @@
<label :for="'loa-' + i">
<div class="usa-input__title">Line of Accounting (LOA) #</div>
</label>
<input type="text" :id="'loa-' + i" placeholder="1234567890"/>
<input type="hidden" :name="'loa-' + i"/>
<input type="text" v-model='loa.number' :id="'loa-' + i" placeholder="1234567890"/>
<input type="hidden" :name="'loa-' + i" v-model='loa.number'/>
</div>
</li>
</ul>