From 9524ab155bce27d806058bf29ecd4ad77a1cf0d2 Mon Sep 17 00:00:00 2001 From: guy Date: Tue, 15 Jun 2021 11:24:32 +0800 Subject: [PATCH] bugfix --- src/core/wrapper/layout.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/wrapper/layout.js b/src/core/wrapper/layout.js index ad3fa2b90..20f68850c 100644 --- a/src/core/wrapper/layout.js +++ b/src/core/wrapper/layout.js @@ -581,6 +581,11 @@ BI.Layout = BI.inherit(BI.Widget, { } }, + empty: function () { + BI.Layout.superclass.empty.apply(this, arguments); + this.options.items = []; + }, + destroy: function () { BI.Layout.superclass.destroy.apply(this, arguments); this.options.items = [];