fix linting
This commit is contained in:
parent
931cffcebe
commit
6ada825a4d
|
@ -197,12 +197,14 @@ export default Ember.Controller.extend(
|
|||
},
|
||||
|
||||
toggleToken(token) {
|
||||
Ember.set(token, 'visible', !token.visible);
|
||||
Ember.set(token, "visible", !token.visible);
|
||||
},
|
||||
|
||||
revokeAuthToken() {
|
||||
ajax(
|
||||
userPath(`${this.get('model.username_lower')}/preferences/revoke-auth-token`),
|
||||
userPath(
|
||||
`${this.get("model.username_lower")}/preferences/revoke-auth-token`
|
||||
),
|
||||
{ type: "POST" }
|
||||
);
|
||||
},
|
||||
|
|
|
@ -577,7 +577,8 @@ select {
|
|||
.auth-token-summary {
|
||||
padding: 0px 10px;
|
||||
|
||||
.auth-token-label, .auth-token-value {
|
||||
.auth-token-label,
|
||||
.auth-token-value {
|
||||
font-size: 1.2em;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
@ -593,7 +594,8 @@ select {
|
|||
}
|
||||
}
|
||||
|
||||
.auth-token-label, .auth-token-value {
|
||||
.auth-token-label,
|
||||
.auth-token-value {
|
||||
float: left;
|
||||
width: 50%;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue