You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BREAKING CHANGE: The pager component now uses buttons instead of anchors.
We did this change to properly reflect the nature of those buttons,
which have never been anchors in terms of behavior.
This change affects custom themes. Please adjust them accordingly:
```scss
// Before
.datatable-pager li a {
// styling
}
// After
.datatable-pager .page-button {
// Override default button styles
border: 0;
background none;
// previous styling
}
```
0 commit comments