#150 - added empty states for user requests

This commit is contained in:
Kamil Niemczycki 2022-06-07 12:02:38 +02:00
parent 2f84f2a066
commit 01c7ffddc5

View File

@ -176,7 +176,14 @@
colspan="100%" colspan="100%"
class="py-4 text-xl leading-5 text-center text-gray-700" class="py-4 text-xl leading-5 text-center text-gray-700"
> >
Brak danych <EmptyState>
<template #title>
Brak wniosków
</template>
<template #text>
Nie znaleziono wniosków o danym statusie
</template>
</EmptyState>
</td> </td>
</tr> </tr>
</tbody> </tbody>
@ -195,6 +202,7 @@ import { Listbox, ListboxButton, ListboxLabel, ListboxOption, ListboxOptions } f
import { reactive, watch } from 'vue' import { reactive, watch } from 'vue'
import { debounce } from 'lodash' import { debounce } from 'lodash'
import { Inertia } from '@inertiajs/inertia' import { Inertia } from '@inertiajs/inertia'
import EmptyState from '@/Shared/Feedbacks/EmptyState'
const props = defineProps({ const props = defineProps({
requests: Object, requests: Object,