From 91c7f52c37b708e040877d3a0c6915849c47e886 Mon Sep 17 00:00:00 2001 From: Jan Oberhauser Date: Mon, 1 Jul 2019 14:52:14 +0200 Subject: [PATCH] :shirt: Fix lint issue --- packages/editor-ui/src/components/CredentialsInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/CredentialsInput.vue b/packages/editor-ui/src/components/CredentialsInput.vue index 6de56dd42d..24c2d401e5 100644 --- a/packages/editor-ui/src/components/CredentialsInput.vue +++ b/packages/editor-ui/src/components/CredentialsInput.vue @@ -214,7 +214,7 @@ export default mixins( let result; try { result = await this.restApi().updateCredentials((this.credentialData as ICredentialsDecryptedResponse).id as string, newCredentials); - } catch (error) { + } catch (error) { this.$showError(error, 'Problem Updating Credentials', 'There was a problem updating the credentials:'); return; }