Skip to content

Commit

Permalink
Merge pull request #29 from Fohn-Group/fix-table-ipp-default
Browse files Browse the repository at this point in the history
hot fix table ipp default
  • Loading branch information
ibelar authored Jun 21, 2024
2 parents c2c0b37 + d8ef4ab commit 418e1fd
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 418e1fd

Please sign in to comment.