From 7ca81f360f42341b2941798374160d362507ba26 Mon Sep 17 00:00:00 2001 From: "John Molakvoæ (skjnldsv)" <skjnldsv@protonmail.com> Date: Thu, 22 Jul 2021 13:21:25 +0200 Subject: Fix eslint and update bundles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> --- apps/oauth2/src/App.vue | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps/oauth2/src') diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue index ce3c8d95099..afb98ed77d2 100644 --- a/apps/oauth2/src/App.vue +++ b/apps/oauth2/src/App.vue @@ -91,6 +91,7 @@ export default { deleteClient(id) { axios.delete(generateUrl('apps/oauth2/clients/{id}', { id })) .then((response) => { + // eslint-disable-next-line vue/no-mutating-props this.clients = this.clients.filter(client => client.id !== id) }) }, @@ -104,6 +105,7 @@ export default { redirectUri: this.newClient.redirectUri, } ).then(response => { + // eslint-disable-next-line vue/no-mutating-props this.clients.push(response.data) this.newClient.name = '' -- cgit v1.2.3