From 01467b94ea31258b895a527e8ea7ce22e0a601ba Mon Sep 17 00:00:00 2001 From: mokaddem Date: Wed, 23 Jun 2021 11:33:36 +0200 Subject: [PATCH] fix: [helpers:bootstrap] Correct call to local function --- webroot/js/bootstrap-helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webroot/js/bootstrap-helper.js b/webroot/js/bootstrap-helper.js index a7a3ba1..2d50a49 100644 --- a/webroot/js/bootstrap-helper.js +++ b/webroot/js/bootstrap-helper.js @@ -124,7 +124,7 @@ class UIFactory { $statusNode = $elligibleTable } else { if ($table instanceof jQuery) { - $reloadedElement = getContainerForTable($table) + $reloadedElement = this.getContainerForTable($table) $statusNode = $table.find('table.table') } else { $reloadedElement = $(`#table-container-${$table}`)