From f9422ec10492307b775b44cb690f556a3fa9ff6d Mon Sep 17 00:00:00 2001 From: Lee94 Date: Fri, 26 Aug 2022 17:03:32 +0800 Subject: [PATCH] JSY-22136 --- src/core/4.widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/4.widget.js b/src/core/4.widget.js index d24c01566..80522bb79 100644 --- a/src/core/4.widget.js +++ b/src/core/4.widget.js @@ -392,7 +392,7 @@ */ _mount: function (force, deep, lifeHook, predicate, layer) { var self = this; - if (!force && (this._isMounted || !this.isVisible() || this.__asking === true || !(this._isRoot === true || (this._parent && this._parent._isMounted === true)))) { + if (!force && (this._isMounted || this.__asking === true || !(this._isRoot === true || (this._parent && this._parent._isMounted === true)))) { return false; } layer = layer || 0;