diff --git a/js/components/forms/oversight.js b/js/components/forms/oversight.js index baaaff70..2516fad1 100644 --- a/js/components/forms/oversight.js +++ b/js/components/forms/oversight.js @@ -12,14 +12,12 @@ const dodid = { }, props: { - initialKoInvite: Boolean, - initialSoInvite: Boolean, + initialInvite: Boolean, }, data: function() { return { - ko_invite: this.initialKoInvite, - so_invite: this.initialSoInvite, + invite: this.initialInvite, } }, } diff --git a/templates/task_orders/new/oversight.html b/templates/task_orders/new/oversight.html index 8aa7c43e..0841faf8 100644 --- a/templates/task_orders/new/oversight.html +++ b/templates/task_orders/new/oversight.html @@ -18,7 +18,7 @@ {{ UserInfo(form.ko_first_name, form.ko_last_name, form.ko_email, form.ko_phone_number) }} {{ CheckboxInput(form.ko_invite) }} - + {{ TextInput(form.ko_dod_id, placeholder="1234567890", tooltip="Why", tooltip_title='Why', validation='dodId', classes="task-order__invite-officer")}} @@ -48,7 +48,7 @@ {{ UserInfo(form.so_first_name, form.so_last_name, form.so_email, form.so_phone_number) }} {{ CheckboxInput(form.so_invite) }} - + {{ TextInput(form.so_dod_id, placeholder="1234567890", tooltip="Why", tooltip_title='Why', validation='dodId', classes="task-order__invite-officer")}}