mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
fix prettier offense (#7041)
This commit is contained in:
parent
bbd00a3488
commit
353eeef72a
1 changed files with 4 additions and 1 deletions
|
@ -174,7 +174,10 @@ export default Ember.Controller.extend(ModalFunctionality, {
|
|||
this._keyLoading = true;
|
||||
ajax(this.get("keyGenUrl"), { method: "POST" })
|
||||
.then(pair => {
|
||||
this.setProperties({ privateKey: pair.private_key, publicKey: pair.public_key });
|
||||
this.setProperties({
|
||||
privateKey: pair.private_key,
|
||||
publicKey: pair.public_key
|
||||
});
|
||||
})
|
||||
.catch(popupAjaxError)
|
||||
.finally(() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue