Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Fix password removal on about:passwords
Browse files Browse the repository at this point in the history
Fix #3481

Auditors: @bbondy
  • Loading branch information
diracdeltas committed Aug 27, 2016
1 parent 54a3773 commit e7b9803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/about/aboutActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const AboutActions = {
deletePassword: function (password) {
AboutActions.dispatchAction({
actionType: AppConstants.APP_REMOVE_PASSWORD,
password
passwordDetail: password
})
},

Expand Down

1 comment on commit e7b9803

@bbondy
Copy link
Member

@bbondy bbondy commented on e7b9803 Aug 28, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Naming the parameter passwordDetail is preferred to keep the shorthand syntax, but ++.
( I don't care in general, but just for future ref :) )

Please sign in to comment.