From 8e3d438ee0ef1bead53fcff29a25c78564c90d2a Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 14 Aug 2024 11:30:08 -0600 Subject: [PATCH] Additional fix for 9fb4c0ab9a9943adf6492ac9adec101d03966321 to handle error from historylog --- api/js/etemplate/et2_core_DOMWidget.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/etemplate/et2_core_DOMWidget.ts b/api/js/etemplate/et2_core_DOMWidget.ts index df8eb6a6cf..36cf8d26a5 100644 --- a/api/js/etemplate/et2_core_DOMWidget.ts +++ b/api/js/etemplate/et2_core_DOMWidget.ts @@ -349,7 +349,7 @@ export abstract class et2_DOMWidget extends et2_widget implements et2_IDOMNode { // Find the tab by DOM heritage // @ts-ignore - if(tabbox.tabData[i].contentDiv?.contains(this.getDOMNode() || this)) + if(tabbox.tabData[i].contentDiv?.contains(this.getDOMNode(this) || this)) { return tabbox.tabData[i]; }