We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e94a649 commit 189e1dbCopy full SHA for 189e1db
src/modules/Search/components/search-list-event/template.php
@@ -21,6 +21,9 @@
21
<mc-loading :condition="loading && page == 1"></mc-loading>
22
<div v-if="!loading || page > 1" class="col-9 search-list__cards">
23
<div class="grid-12">
24
+ <div v-if="!loading && occurrences.length === 0" class="col-12 no-results">
25
+ <h3>Nenhum evento encontrado.</h3>
26
+ </div>
27
<div v-for="occurrence in occurrences" :key="occurrence._reccurrence_string" class="col-12">
28
<div v-if="newDate(occurrence)" class="search-list__cards--date">
29
<div class="search-list__cards--date-info">
@@ -43,4 +46,4 @@
43
46
</div>
44
47
45
48
-</div>
49
+</div>
0 commit comments