From f520a6bceb1b7e04059e4d16478c509f8c740581 Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Tue, 19 Jun 2018 11:42:35 +0200 Subject: Fix redirctUri Signed-off-by: Roeland Jago Douma --- apps/oauth2/src/App.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/oauth2') diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue index 6bbd90db525..0b502c1da02 100644 --- a/apps/oauth2/src/App.vue +++ b/apps/oauth2/src/App.vue @@ -46,7 +46,7 @@

{{ t('oauth2', 'Add client') }}

- +
@@ -66,7 +66,7 @@ export default { clients: [], newClient: { name: '', - redirctUri: '' + redirectUri: '' } }; }, @@ -97,14 +97,14 @@ export default { OC.generateUrl('apps/oauth2/clients'), { name: this.newClient.name, - redirectUri: this.newClient.redirctUri + redirectUri: this.newClient.redirectUri }, tokenHeaders) .then((response) => { this.clients.push(response.data) this.newClient.name = ''; - this.newClient.redirctUri = ''; + this.newClient.redirectUri = ''; } ); } -- cgit v1.2.3