Skip to content

Commit

Permalink
#178 - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EwelinaSkrzypacz committed Oct 11, 2023
1 parent 2669d09 commit 2c123f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion resources/js/Pages/Equipment/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import {
CheckIcon,
XMarkIcon,
ChevronUpDownIcon,
ComputerDesktopIcon

Check failure on line 26 in resources/js/Pages/Equipment/Index.vue

View workflow job for this annotation

GitHub Actions / Test & lint JS stuff

Missing trailing comma
} from '@heroicons/vue/24/solid'
const props = defineProps({
Expand Down Expand Up @@ -389,7 +390,7 @@ watch(form, debounce(() => {
>
<EmptyState class="text-gray-700">
<template #head>
<KeyIcon class="mx-auto w-12 h-12" />
<ComputerDesktopIcon class="mx-auto w-12 h-12" />
</template>
<template #title>
Brak wpisów
Expand Down
4 changes: 2 additions & 2 deletions resources/js/Pages/Equipment/IndexForEmployee.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script setup>
import EmptyState from '@/Shared/Feedbacks/EmptyState.vue'
import Pagination from '@/Shared/Pagination.vue'
import { MagnifyingGlassIcon } from '@heroicons/vue/24/outline'
import { reactive, watch } from 'vue'
Expand All @@ -10,6 +9,7 @@ import MultipleCombobox from '@/Shared/Forms/MultipleCombobox.vue'
import {
CheckIcon,
XMarkIcon,
ComputerDesktopIcon

Check failure on line 12 in resources/js/Pages/Equipment/IndexForEmployee.vue

View workflow job for this annotation

GitHub Actions / Test & lint JS stuff

Missing trailing comma
} from '@heroicons/vue/24/solid'
const props = defineProps({
Expand Down Expand Up @@ -143,7 +143,7 @@ watch(form, debounce(() => {
>
<EmptyState class="text-gray-700">
<template #head>
<KeyIcon class="mx-auto w-12 h-12" />
<ComputerDesktopIcon class="mx-auto w-12 h-12" />
</template>
<template #title>
Brak wpisów
Expand Down

0 comments on commit 2c123f7

Please sign in to comment.