Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-31 10:26:43 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-31 10:26:43 +0300
commit0f8aca9d87db9022fe942a3d3fbb11433e152676 (patch)
tree5b36724719611ebb87b3d9290a51475f32b48e64 /apps/oauth2/src/App.vue
parentfc31cb8bf2d6cf7ee7af46af38e1b06002f7fb26 (diff)
Bump compiled files
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/oauth2/src/App.vue')
-rw-r--r--apps/oauth2/src/App.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue
index e18502ee6f3..34b466ab7e2 100644
--- a/apps/oauth2/src/App.vue
+++ b/apps/oauth2/src/App.vue
@@ -88,7 +88,7 @@ export default {
required: true,
},
},
- data: function() {
+ data() {
return {
newClient: {
name: '',
@@ -100,7 +100,7 @@ export default {
},
methods: {
deleteClient(id) {
- axios.delete(generateUrl('apps/oauth2/clients/{id}', { id: id }))
+ axios.delete(generateUrl('apps/oauth2/clients/{id}', { id }))
.then((response) => {
this.clients = this.clients.filter(client => client.id !== id)
})