We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17f4ec7 commit 7c3811cCopy full SHA for 7c3811c
resources/js/components/TwoFactorSetupModal.vue
@@ -54,9 +54,11 @@ const modalConfig = computed<{ title: string; description: string; buttonText: s
54
const handleModalNextStep = () => {
55
if (props.requiresConfirmation) {
56
showVerificationStep.value = true;
57
+
58
nextTick(() => {
59
pinInputContainerRef.value?.querySelector('input')?.focus();
60
});
61
62
return;
63
}
64
@@ -68,6 +70,7 @@ const resetModalState = () => {
68
70
if (props.twoFactorEnabled) {
69
71
clearSetupData();
72
73
74
showVerificationStep.value = false;
75
code.value = [];
76
};
0 commit comments