diff --git a/js/dist/forum.js b/js/dist/forum.js index 4ee4e8b..319120c 100644 Binary files a/js/dist/forum.js and b/js/dist/forum.js differ diff --git a/js/dist/forum.js.map b/js/dist/forum.js.map index e7f62ed..faae632 100644 Binary files a/js/dist/forum.js.map and b/js/dist/forum.js.map differ diff --git a/js/src/forum/components/oauth/AuthorizePage.js b/js/src/forum/components/oauth/AuthorizePage.js index ec1e0a5..02a757d 100644 --- a/js/src/forum/components/oauth/AuthorizePage.js +++ b/js/src/forum/components/oauth/AuthorizePage.js @@ -14,6 +14,7 @@ export default class AuthorizePage extends IndexPage { client_scope = []; loading = true; is_authorized = false; + submit_loading = false; oninit(vnode) { super.oninit(vnode); @@ -76,7 +77,7 @@ export default class AuthorizePage extends IndexPage { scopes_temp = scopes_temp.concat(default_scopes); this.client_scope = scopes_temp.filter((scope, index) => scopes_temp.indexOf(scope) === index); - console.log( this.client_scope ); + console.log(this.client_scope); this.loading = false; m.redraw(); }); @@ -135,9 +136,9 @@ export default class AuthorizePage extends IndexPage {