Skip to content

Commit

Permalink
Correct ID value for email field (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwelch authored Sep 20, 2020
1 parent b2f2e4d commit 1a05aba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<!-- Member Email -->
<div class="col-span-6 sm:col-span-4">
<jet-label for="email" value="Email" />
<jet-input id="name" type="text" class="mt-1 block w-full" v-model="addTeamMemberForm.email" />
<jet-input id="email" type="text" class="mt-1 block w-full" v-model="addTeamMemberForm.email" />
<jet-input-error :message="addTeamMemberForm.error('email')" class="mt-2" />
</div>

Expand Down

0 comments on commit 1a05aba

Please sign in to comment.