Skip to content

Commit

Permalink
feat: Add default view
Browse files Browse the repository at this point in the history
  • Loading branch information
famoser committed Nov 13, 2024
1 parent 0e68c2d commit c75af9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
</thead>
<tbody>
<loading-indicator-table-body v-if="!constructionSites" />
<tr v-else-if="constructionSitesOrdered.length === 0">
<td colspan="99">
<p class="text-center">{{ $t('_view.no_construction_sites') }}</p>
</td>
</tr>
<tr v-else v-for="constructionSite in constructionSitesOrdered" :key="constructionSite['@id']">
<td>
<image-lightbox :src="constructionSite.imageUrl" :subject="constructionSite.name" />
Expand Down
1 change: 1 addition & 0 deletions assets/js/vue/localization/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@
},
"no_craftsmen": "Keine Unternehmer",
"no_issues": "Keine Pendenzen",
"no_construction_sites": "Keine Baustellen",
"no_maps": "Keine Baupläne",
"show_more_issues": "Weitere {count} Pendenzen laden."
},
Expand Down

0 comments on commit c75af9a

Please sign in to comment.