TableWidget bug: the bootstrapVersion was provided with the tableUniqueId, not needed

This commit is contained in:
Paolo
2025-03-03 13:44:40 +01:00
parent dd2a13d92d
commit c028a769cc
+1 -3
View File
@@ -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
}