fix prettier offense (#7041)
This commit is contained in:
parent
bbd00a3488
commit
353eeef72a
|
@ -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…
Reference in New Issue