diff --git a/src/components/generic/ATable.vue b/src/components/generic/ATable.vue index 975ea1b5516467b3d4e60f236ef5cdfdd6fbf27b..bf06f203775123eb102eeb8446fba4899122a314 100644 --- a/src/components/generic/ATable.vue +++ b/src/components/generic/ATable.vue @@ -28,11 +28,10 @@ class="tw-flex tw-gap-3 tw-items-center tw-flex-wrap tw-px-6 tw-py-3 tw-border-t" > <PaginationRange v-if="paginationData.count > 0" :pagination-data="paginationData" /> - <FormGroup - v-if="itemsPerPage" - v-slot="attrs" - class="tw-ml-auto tw-m-0 tw-mr-9 last:tw-mr-0" - > + + <span class="tw-ml-auto" /> + + <FormGroup v-if="itemsPerPage" v-slot="attrs" class="tw-m-0 tw-mr-9 last:tw-mr-0"> <label class="tw-flex tw-items-center tw-gap-3 tw-m-0"> <span>{{ t('paginator.itemsPerPage') }}</span> <input @@ -51,7 +50,6 @@ :items-per-page="itemsPerPage ?? paginationData.itemsPerPage" :max-visible-pages="maxVisiblePages ?? 5" :count="paginationData.count" - class="tw-ml-auto" /> </div> </slot>