Skip to content

Commit 75fac6f

Browse files
committed
Fixed a bug where type attribute for tag button was missing
1 parent 57ab446 commit 75fac6f

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Backend/view/adminhtml/templates/widget/grid

1 file changed

+1
-1
lines changed

app/code/Magento/Backend/view/adminhtml/templates/widget/grid/extended.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ $numColumns = sizeof($block->getColumns());
116116
<?php echo __('of %1', '<span>' . $block->getCollection()->getLastPageNumber() . '</span>') ?>
117117
</label>
118118
<?php if ($_curPage < $_lastPage): ?>
119-
<button href="#"
119+
<button type="button"
120120
title="<?php echo __('Next page') ?>"
121121
class="action-next"
122122
onclick="<?php echo $block->getJsObjectName() ?>.setPage('<?php echo($_curPage + 1) ?>');return false;">

0 commit comments

Comments
 (0)