Skip to content

Commit

Permalink
FIX: bugs preventing to close delete account modal with button (#7904)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaffeux committed Jul 18, 2019
1 parent 0f1a0b4 commit cb84133
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@ export default Ember.Controller.extend(
label: I18n.t("cancel"),
class: "d-modal-cancel",
link: true,
callback: () => this.set("deleting", false)
callback: () => {
this.set("deleting", false);
}
},
{
label:
Expand Down

0 comments on commit cb84133

Please sign in to comment.