Skip to content

Commit

Permalink
hot fix table ipp default
Browse files Browse the repository at this point in the history
  • Loading branch information
ibelar committed Jun 21, 2024
1 parent c2c0b37 commit d8ef4ab
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions template/tailwind/vue-component/table.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
<fohn-table
store-id="{$storeId}"
data-url="{$dataUrl}"
:items-per-page="{$itemsPerPage}"
:tbl-items-per-page="{$itemsPerPage}"
:tbl-items-per-pages="{$itemsPerPages}"
:columns="{$columns}"
:has-selectable-rows="{$hasSelectableRows}"
:keep-selection-across-page="{$keepSelectionAcrossPage}"
Expand All @@ -19,7 +20,8 @@
rows,
heightStyle,
totalItems,
itemsPerPage,
tblItemsPerPage,
tblItemsPerPages,
loadPage,
searchItems,
sortTable,
Expand Down Expand Up @@ -124,8 +126,8 @@
:total-items="totalItems"
:disabled="isFetching"
:page-limit="{$pagesLimit}"
:items-per-page="itemsPerPage"
:items-per-pages="{$itemsPerPages}"
:items-per-page="tblItemsPerPage"
:items-per-pages="tblItemsPerPages"
#default="@{range,
currentPage,
totalPages,
Expand Down

0 comments on commit d8ef4ab

Please sign in to comment.