FIX: 🐛 show email button wasn't working on user's profile page
This commit is contained in:
parent
14ea59b623
commit
beea92a74b
|
@ -26,6 +26,6 @@ export default Ember.Component.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
click: function() {
|
click: function() {
|
||||||
this.sendAction();
|
this.sendAction("action", this.get("actionParam"));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -117,7 +117,7 @@
|
||||||
{{#if email}}
|
{{#if email}}
|
||||||
{{email}}
|
{{email}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{d-button action="checkEmail" icon="envelope-o" label="admin.users.check_email.text" class="btn-primary"}}
|
{{d-button action="checkEmail" actionParam=model icon="envelope-o" label="admin.users.check_email.text" class="btn-primary"}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</dd>
|
</dd>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
Loading…
Reference in New Issue