From 266a2f271e1172d5b704c5116cc04133b4672aec Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Sun, 22 Nov 2020 18:34:05 +0100 Subject: [PATCH] Update 0BDFDB.plugin.js --- Library/0BDFDB.plugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/0BDFDB.plugin.js b/Library/0BDFDB.plugin.js index 3661c83dc5..638a063c63 100644 --- a/Library/0BDFDB.plugin.js +++ b/Library/0BDFDB.plugin.js @@ -6325,8 +6325,8 @@ module.exports = (_ => { InternalComponents.LibraryComponents.SettingsPanel = reactInitialized && class BDFDB_SettingsPanel extends LibraryModules.React.Component { componentDidMount() { - let panel = BDFDB.ReactUtils.findDOMNode(this); - if (panel) this.panel = panel; + let node = BDFDB.ReactUtils.findDOMNode(this); + if (node) this.node = node; } componentWillUnmount() { if (BDFDB.ObjectUtils.is(this.props.addon) && typeof this.props.addon.onSettingsClosed == "function") this.props.addon.onSettingsClosed();