Skip to content

Commit

Permalink
fix: change infinite scrolling breakpoint to 768px
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi committed Apr 4, 2024
1 parent dd729dd commit a49c8d0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

* feat: infinite scrolling
* feat: AssetMapper compatibility
* fix: js module
* fix: change infinite scrolling breakpoint to 768px

## 0.6.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ var _default = /*#__PURE__*/function (_Controller) {
_defineProperty(_default, "values", {
breakpoint: {
type: String,
"default": '576px'
"default": '768px'
},
pagination: {
type: String,
Expand Down
2 changes: 1 addition & 1 deletion packages/rekapager-bundle/assets/src/infinite-scrolling.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Controller } from '@hotwired/stimulus';

export default class extends Controller {
static values = {
breakpoint: { type: String, default: '576px' },
breakpoint: { type: String, default: '768px' },
pagination: { type: String, default: '.pagination' },
controllerName: { type: String, default: 'rekalogika--rekapager-bundle--infinite-scrolling' }
}
Expand Down

0 comments on commit a49c8d0

Please sign in to comment.