From 60895a61cbbc98a8397024a67da2392ba409c9fa Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 16 Apr 2017 10:10:05 +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 72d34bce38da..0302cbe4d558 100644 --- a/resources/views/invoices/edit.blade.php +++ b/resources/views/invoices/edit.blade.php @@ -693,7 +693,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