Skip to content

Commit

Permalink
Fix message displayed when UI is still loading
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit74 committed Dec 13, 2024
1 parent 58c7951 commit f66821f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zimui/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ watch(
v-if="main.pageContent"
v-html="main.pageContent.htmlBody"
></section>
<div v-else>Page not found</div>
<div v-else-if="main.isLoading">Page loading ...</div>
<!-- We should not display HomeView when page is still loading -->
<div v-else>No page loaded, problem occured, please try to reload.</div>
</article>
</main>
</template>

0 comments on commit f66821f

Please sign in to comment.