Skip to content

Commit

Permalink
Fixed #3540 - DataTable: Paginator should be below DataTable Footer t…
Browse files Browse the repository at this point in the history
…emplating
  • Loading branch information
tugcekucukoglu committed Jan 26, 2023
1 parent d900c85 commit b3dee7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/datatable/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@
</template>
</DTVirtualScroller>
</div>
<div v-if="$slots.footer" class="p-datatable-footer">
<slot name="footer"></slot>
</div>
<DTPaginator
v-if="paginatorBottom"
:rows="d_rows"
Expand All @@ -196,9 +199,6 @@
<slot name="paginatorend"></slot>
</template>
</DTPaginator>
<div v-if="$slots.footer" class="p-datatable-footer">
<slot name="footer"></slot>
</div>
<div ref="resizeHelper" class="p-column-resizer-helper" style="display: none"></div>
<span v-if="reorderableColumns" ref="reorderIndicatorUp" class="pi pi-arrow-down p-datatable-reorder-indicator-up" style="position: absolute; display: none" />
<span v-if="reorderableColumns" ref="reorderIndicatorDown" class="pi pi-arrow-up p-datatable-reorder-indicator-down" style="position: absolute; display: none" />
Expand Down

0 comments on commit b3dee7e

Please sign in to comment.