Fixes the end of the loop in model error message appearing while page loading indicator was displayed (without actual loop error) (#1405)
Signed-off-by: Gautier Taravella <tarag@mailbox.org>pull/1409/head
parent
f699f11dfc
commit
90eeaedd9b
|
@ -30,10 +30,12 @@
|
|||
<f7-preloader :size="30" />
|
||||
<div>Loading...</div>
|
||||
</f7-block-title>
|
||||
<f7-block-title v-if="loopError">
|
||||
<div>Error!</div>
|
||||
</f7-block-title>
|
||||
{{ loopError }}. Please correct and refresh.
|
||||
<f7-block v-if="loopError">
|
||||
<f7-block-title>
|
||||
<div>Error!</div>
|
||||
</f7-block-title>
|
||||
{{ loopError }}. Please correct and refresh.
|
||||
</f7-block>
|
||||
</f7-block>
|
||||
<f7-tabs v-else>
|
||||
<f7-tab id="tab-overview" :tab-active="currentTab === 'overview'" @tab:show="() => this.currentTab = 'overview'">
|
||||
|
|
Loading…
Reference in New Issue