Skip to content

Commit

Permalink
Wait for data load before rendering form
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle1morel committed Apr 24, 2024
1 parent b3edbd5 commit 532cb4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/SubmissionView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ onMounted(async () => {

<TabView v-model:activeIndex="activeTab">
<TabPanel header="Info">
<span v-if="getSubmission">
<span v-if="!loading && getSubmission">
<SubmissionForm :submission="getSubmission" />
</span>
</TabPanel>
Expand Down

0 comments on commit 532cb4e

Please sign in to comment.