Skip to content
This repository was archived by the owner on Jun 27, 2024. It is now read-only.

Commit ef63413

Browse files
committed
Update Pagination.vue
1 parent b374ba5 commit ef63413

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/Tailwind2/Pagination.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
class="bg-white px-4 py-3 flex items-center justify-between border-t border-gray-200 sm:px-6"
44
v-if="meta"
55
>
6-
<p v-if="meta.total < 1" class>No results found</p>
6+
<p v-if="meta.total < 1">No results found</p>
77
<div v-if="meta.total > 0" class="flex-1 flex justify-between sm:hidden">
88
<component
99
:is="meta.prev_page_url ? 'inertia-link' : 'div'"
@@ -16,7 +16,7 @@
1616
class="ml-3 relative inline-flex items-center px-4 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:text-gray-500"
1717
>Next</component>
1818
</div>
19-
<div class="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between">
19+
<div v-if="meta.total > 0" class="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between">
2020
<div>
2121
<p class="hidden lg:block text-sm text-gray-700">
2222
<span class="font-medium">{{ meta.from }}</span>

0 commit comments

Comments
 (0)