Skip to content

Commit

Permalink
fix: click listener not working for push submission
Browse files Browse the repository at this point in the history
  • Loading branch information
ayZagen committed Dec 5, 2024
1 parent d5efb15 commit f0c00c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ui/views/mfa/Push.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
block
color="primary"
:loading="loading"
@click="manualMode ? submit : reload"
@click="(...args) => manualMode ? submit(...args) : reload()"
>
<span v-t="manualMode ? 'common.submit': 'common.continue'" />
</p-btn>
Expand Down
2 changes: 1 addition & 1 deletion src/ui/views/passwordless/Push.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
block
color="primary"
:loading="loading"
@click="manualMode ? submit : reload"
@click="(...args) => manualMode ? submit(...args) : reload()"
>
<span v-t="manualMode ? 'common.submit': 'common.continue'" />
</p-btn>
Expand Down

0 comments on commit f0c00c4

Please sign in to comment.