Skip to content

Commit 6b4ba5f

Browse files
committed
updateOptions update lazyLoad
1 parent 8ebff14 commit 6b4ba5f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

doc/CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ Change log
138138
## 12.3.3-dev (TBD)
139139
* feat: [#3104](https://github.com/gridstack/gridstack.js/issues/3104) Custom resize div element target - thank you [Marvin Heilemann](https://github.com/muuvmuuv)
140140
* fix: [#3181](https://github.com/gridstack/gridstack.js/issues/3181) re-initing from DOM missing x:0, y:0 messing layout
141+
* fix: [#3191](https://github.com/gridstack/gridstack.js/pull/3191) touch issue on Linux
142+
* fix: [#3194](https://github.com/gridstack/gridstack.js/pull/3194) `updateOption()` update lazyLoad
141143

142144
## 12.3.3 (2025-08-13)
143145
* fix: [#3139](https://github.com/gridstack/gridstack.js/pull/3139) `Utils:removeInternalForSave()` to skip arrays

src/gridstack.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1512,6 +1512,7 @@ export class GridStack {
15121512
if (o.minRow !== undefined) { opts.minRow = o.minRow; this._updateContainerHeight(); }
15131513
if (o.maxRow !== undefined) opts.maxRow = o.maxRow;
15141514
}
1515+
if (o.lazyLoad !== undefined) opts.lazyLoad = o.lazyLoad;
15151516
if (o.children?.length) this.load(o.children);
15161517
// TBD if we have a real need for these (more complex code)
15171518
// alwaysShowResizeHandle, draggable, handle, handleClass, itemClass, layout, placeholderClass, placeholderText, resizable, removable, row,...

0 commit comments

Comments
 (0)