From c028a769cc9334bb56825e4ef17e2920aaa234d1 Mon Sep 17 00:00:00 2001 From: Paolo Date: Mon, 3 Mar 2025 13:44:40 +0100 Subject: [PATCH] TableWidget bug: the bootstrapVersion was provided with the tableUniqueId, not needed --- application/widgets/TableWidget.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/application/widgets/TableWidget.php b/application/widgets/TableWidget.php index c48308258..28e7c4a4f 100644 --- a/application/widgets/TableWidget.php +++ b/application/widgets/TableWidget.php @@ -95,10 +95,8 @@ class TableWidget extends Widget */ public function display($widgetData) { - $this->view(self::WIDGET_URL_TABLE, array( - 'tableUniqueId' => $widgetData[TableWidgetLib::TABLE_UNIQUE_ID], - 'bootstrapVersion' => $widgetData[TableWidgetLib::TABLE_BOOTSTRAP_VERSION], + 'tableUniqueId' => $widgetData[TableWidgetLib::TABLE_UNIQUE_ID] )); // GUI starts here }