Skip to content

Commit c2dcfe8

Browse files
MC-41067: Sources pagination does not work in Admin during shipping
1 parent cdd4d4b commit c2dcfe8

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates

1 file changed

+2
-2
lines changed

app/code/Magento/Ui/view/base/web/templates/dynamic-rows/templates/default.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
</tr>
4949
</tbody>
5050

51-
<tfoot visible="element.addButton || (!!element.getRecordCount() && (element.pages() > 1))">
51+
<tfoot visible="element.addButton || (!!element.getRecordCount() && pages() > 1)">
5252
<tr>
5353
<td attr="{'colspan': element.getColumnsCount()}"
5454
visible="element.addButton || pages() > 1">
@@ -59,7 +59,7 @@
5959
<span translate="addButtonLabel"/>
6060
</button>
6161

62-
<div class="admin__control-table-pagination" visible="!!element.getRecordCount() && element.pages() > 1">
62+
<div class="admin__control-table-pagination" visible="!!element.getRecordCount() && pages() > 1">
6363
<div class="admin__data-grid-pager">
6464
<button class="action-previous" type="button" data-bind="attr: {title: $t('Previous Page')}, click: previousPage, disable: isFirst()"></button>
6565
<input class="admin__control-text" type="number" data-bind="attr: {id: ++ko.uid}, value: currentPage">

0 commit comments

Comments
 (0)