From 5b4f9e308f6ebaa36226e90933c80034d06102fb Mon Sep 17 00:00:00 2001 From: guy Date: Fri, 11 Mar 2022 10:15:42 +0800 Subject: [PATCH] chore: bugfix --- dist/fix/fix.compact.js | 4 ++++ src/core/4.widget.js | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dist/fix/fix.compact.js b/dist/fix/fix.compact.js index 87d22bd83..b8e49eb28 100644 --- a/dist/fix/fix.compact.js +++ b/dist/fix/fix.compact.js @@ -105,6 +105,10 @@ if (workerMode && this._worker) { return; } + if (this.store) { + pushTarget(this.store); + return true; + } if (this._store) { var store = findStore(this.options.context || this._parent || this.options.element || this._context); if (store) { diff --git a/src/core/4.widget.js b/src/core/4.widget.js index 60e642db3..597e344ff 100644 --- a/src/core/4.widget.js +++ b/src/core/4.widget.js @@ -755,7 +755,6 @@ this.element.unbind(); // this._initCurrent(); this._init(); - this._mount(); // this._initRef(); },