Skip to content

Commit

Permalink
fix(editor): Prevent double click event on credential oauth button
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik committed Sep 13, 2023
1 parent 34ebffe commit 13e5b83
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<button
:class="$style.googleAuthBtn"
:title="$locale.baseText('credentialEdit.oAuthButton.signInWithGoogle')"
@click.stop.prevent="$emit('click')"
:style="googleAuthButtons"
/>
</template>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div :class="$style.container">
<GoogleAuthButton v-if="isGoogleOAuthType" @click="$emit('click')" />
<GoogleAuthButton v-if="isGoogleOAuthType" @click.stop="$emit('click')" />
<n8n-button
v-else
:label="$locale.baseText('credentialEdit.oAuthButton.connectMyAccount')"
Expand Down

0 comments on commit 13e5b83

Please sign in to comment.