Skip to content

Commit

Permalink
autocomplete fix (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
angusgoody authored Aug 15, 2023
1 parent 11e5c66 commit 4113b5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/WishlistController.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function show(Wishlist $wishlist){
'list' => $list,
]);
}

// Return to the authenticated view
return Inertia::render('Wishlist/View', [
'list' => $list,
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Auth/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const submit = () => {
class="mt-1 block w-full"
required
autofocus
autocomplete="username"
autocomplete="email"
/>
<InputError class="mt-2" :message="form.errors.email" />
</div>
Expand Down

0 comments on commit 4113b5c

Please sign in to comment.