| Index: chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.js
|
| diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.js b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.js
|
| index 51377c74ef3ea10e21852210e4c031a5f19f4076..32fea6ec1aca68acee5af3d5a8370b2f01ec4478 100644
|
| --- a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.js
|
| +++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_section.js
|
| @@ -92,9 +92,11 @@ Polymer({
|
|
|
| /**
|
| * Shows the edit password dialog.
|
| + * @param {!Event} e
|
| * @private
|
| */
|
| - onMenuEditPasswordTap_: function() {
|
| + onMenuEditPasswordTap_: function(e) {
|
| + e.preventDefault();
|
| /** @type {CrActionMenuElement} */(this.$.menu).close();
|
| this.showPasswordEditDialog_ = true;
|
| },
|
|
|