diff options
Diffstat (limited to 'apps/oauth2/src/components/OAuthItem.vue')
-rw-r--r-- | apps/oauth2/src/components/OAuthItem.vue | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/oauth2/src/components/OAuthItem.vue b/apps/oauth2/src/components/OAuthItem.vue index 2d670447d72..8da5442ab5e 100644 --- a/apps/oauth2/src/components/OAuthItem.vue +++ b/apps/oauth2/src/components/OAuthItem.vue @@ -37,8 +37,8 @@ export default { props: { client: { type: Object, - required: true - } + required: true, + }, }, data: function() { return { @@ -47,7 +47,7 @@ export default { redirectUri: this.client.redirectUri, clientId: this.client.clientId, clientSecret: this.client.clientSecret, - renderSecret: false + renderSecret: false, } }, computed: { @@ -57,13 +57,13 @@ export default { } else { return '****' } - } + }, }, methods: { toggleSecret() { this.renderSecret = !this.renderSecret - } - } + }, + }, } </script> |