diff options
Diffstat (limited to 'apps/oauth2/src/components/OAuthItem.vue')
-rw-r--r-- | apps/oauth2/src/components/OAuthItem.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/oauth2/src/components/OAuthItem.vue b/apps/oauth2/src/components/OAuthItem.vue index 8da5442ab5e..3522a7d17c8 100644 --- a/apps/oauth2/src/components/OAuthItem.vue +++ b/apps/oauth2/src/components/OAuthItem.vue @@ -40,7 +40,7 @@ export default { required: true, }, }, - data: function() { + data() { return { id: this.client.id, name: this.client.name, @@ -51,7 +51,7 @@ export default { } }, computed: { - renderedSecret: function() { + renderedSecret() { if (this.renderSecret) { return this.clientSecret } else { |