Skip to content

Commit 00aea5c

Browse files
committed
Remove extraneous call to onDataChange during tab change
1 parent 9090fc2 commit 00aea5c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

web/src/views/SubmissionPortal/HarmonizerView.vue

+1-3
Original file line numberDiff line numberDiff line change
@@ -448,8 +448,6 @@ export default defineComponent({
448448
return;
449449
}
450450
451-
onDataChange();
452-
453451
await validate();
454452
455453
// When changing templates we may need to populate the common columns
@@ -781,7 +779,7 @@ export default defineComponent({
781779
<v-tab>
782780
<v-badge
783781
:content="validationTotalCounts[templateKey] || '!'"
784-
:value="validationTotalCounts[templateKey] > 0 || !tabsValidated[templateKey] || status !== submissionStatus.InProgress"
782+
:value="validationTotalCounts[templateKey] > 0 || !tabsValidated[templateKey]"
785783
:color="validationTotalCounts[templateKey] > 0 ? 'error' : 'warning'"
786784
>
787785
{{ HARMONIZER_TEMPLATES[templateKey].displayName }}

0 commit comments

Comments
 (0)