2
0
mirror of https://github.com/frappe/books.git synced 2024-11-13 00:46:28 +00:00

Changed generic records word in "No records found" to dynamic name

This commit is contained in:
Piyush Singhania 2021-10-28 15:16:05 +05:30
parent d185345bd1
commit cbeecb39d5

View File

@ -48,7 +48,7 @@
</div>
<div v-else class="flex flex-col items-center justify-center my-auto">
<img src="@/assets/img/list-empty-state.svg" alt="" class="w-24" />
<p class="my-3 text-gray-800">No records found</p>
<p class="my-3 text-gray-800">No {{ meta.label || meta.name }} found</p>
<Button type="primary" class="text-white" @click="$emit('makeNewDoc')">
Create a new {{ meta.label || meta.name }}
</Button>