Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

fix: fix cities blank state #473

Merged
merged 1 commit into from
Apr 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/Pages/Vault/Reports/Address/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ defineProps({

<!-- blank state -->
<div
v-if="data.countries.length == 0"
v-if="data.cities.length == 0"
class="mb-6 rounded-lg border border-gray-200 bg-white dark:border-gray-700 dark:bg-gray-900">
<p class="p-5 text-center">No cities have been added yet in any contact's addresses.</p>
</div>
Expand Down