Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
dx(authentication): add prefix to email
Browse files Browse the repository at this point in the history
  • Loading branch information
lemredd committed Nov 21, 2022
1 parent b6ee9ca commit 9e2a890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/authentication/log_in_form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const selectableRoles = [
]
const selectedRole = ref("")
function fillDetails() {
email.value = `${selectedRole.value}@example.net`
email.value = `test_${selectedRole.value}@example.net`
password.value = selectedRole.value === defaultProfessor ? defaultProfessor : "password"
}
</script>

0 comments on commit 9e2a890

Please sign in to comment.