From b408d9287946e7f0f4131bfc82e6ffbc8cc25bae Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 16 Apr 2017 10:09:45 +0300 Subject: [PATCH] Prevent auto-complete on contact password --- resources/views/invoices/edit.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/invoices/edit.blade.php b/resources/views/invoices/edit.blade.php index 44b8cffa0ea7..f6c887de7b3b 100644 --- a/resources/views/invoices/edit.blade.php +++ b/resources/views/invoices/edit.blade.php @@ -697,7 +697,7 @@ attr: {name: 'client[contacts][' + \$index() + '][phone]'}") !!} @if ($account->hasFeature(FEATURE_CLIENT_PORTAL_PASSWORD) && $account->enable_portal_password) {!! Former::password('password')->data_bind("value: (typeof password=='function'?password():null)?'-%unchanged%-':'', valueUpdate: 'afterkeydown', - attr: {name: 'client[contacts][' + \$index() + '][password]'}") !!} + attr: {name: 'client[contacts][' + \$index() + '][password]'}")->autocomplete('new-password') !!} @endif