From aa9aedc5fd7d8a291fae9bfc1dfc100ce2030eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 25 Jan 2026 00:38:11 +0100 Subject: [PATCH] Prevent the extra column of the log data tables to be ordered This makes not much sense because its JSON data under the hood, and PostgreSQL errors when trying to do it. --- src/DataTables/LogDataTable.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DataTables/LogDataTable.php b/src/DataTables/LogDataTable.php index f6604279..2c37767b 100644 --- a/src/DataTables/LogDataTable.php +++ b/src/DataTables/LogDataTable.php @@ -208,6 +208,7 @@ class LogDataTable implements DataTableTypeInterface $dataTable->add('extra', LogEntryExtraColumn::class, [ 'label' => 'log.extra', + 'orderable' => false, //Sorting the JSON column makes no sense: MySQL/Sqlite does it via the string representation, PostgreSQL errors out ]); $dataTable->add('timeTravel', IconLinkColumn::class, [