Skip to content

Commit 95b9cc1

Browse files
committed
Allow users to submit without an email stored for their account
1 parent 5c1ce8f commit 95b9cc1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

web/src/views/SubmissionPortal/HarmonizerView.vue

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,7 @@ export default defineComponent({
10001000
<v-btn
10011001
color="success"
10021002
depressed
1003-
:disabled="!canSubmit || status !== submissionStatus.InProgress || submitCount > 0 || !user.email"
1003+
:disabled="!canSubmit || status !== submissionStatus.InProgress || submitCount > 0"
10041004
:loading="submitLoading"
10051005
@click="submitDialog = true"
10061006
>
@@ -1041,9 +1041,6 @@ export default defineComponent({
10411041
<span v-if="!canSubmit">
10421042
You must validate all tabs before submitting your study and metadata.
10431043
</span>
1044-
<span v-else-if="!user.email">
1045-
You must provide an email address to your user profile before submitting.
1046-
</span>
10471044
<span v-else>
10481045
Submit for NMDC review.
10491046
</span>

0 commit comments

Comments
 (0)