dockview-core 1.15.1 → 1.15.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * dockview-core
3
- * @version 1.15.1
3
+ * @version 1.15.2
4
4
  * @link https://github.com/mathuo/dockview
5
5
  * @license MIT
6
6
  */
@@ -2796,7 +2796,7 @@ class BaseGrid extends Resizable {
2796
2796
  this.doSetGroupActive(next);
2797
2797
  }
2798
2798
  layout(width, height, forceResize) {
2799
- const different = forceResize !== null && forceResize !== void 0 ? forceResize : (width !== this.width || height !== this.height);
2799
+ const different = forceResize || width !== this.width || height !== this.height;
2800
2800
  if (!different) {
2801
2801
  return;
2802
2802
  }