dockview-react 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-react
3
- * @version 1.15.1
3
+ * @version 1.15.2
4
4
  * @link https://github.com/mathuo/dockview
5
5
  * @license MIT
6
6
  */
@@ -2801,7 +2801,7 @@ class BaseGrid extends Resizable {
2801
2801
  this.doSetGroupActive(next);
2802
2802
  }
2803
2803
  layout(width, height, forceResize) {
2804
- const different = forceResize !== null && forceResize !== void 0 ? forceResize : (width !== this.width || height !== this.height);
2804
+ const different = forceResize || width !== this.width || height !== this.height;
2805
2805
  if (!different) {
2806
2806
  return;
2807
2807
  }