Skip to content

Commit aa6dfe0

Browse files
committed
fixes #70 data is transformed twice
1 parent 37aaf56 commit aa6dfe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Adapter/ArrayAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ protected function processRow(DataTableState $state, array $result, array $map,
9898
if (!$match) {
9999
$match = (false !== mb_stripos($value, $search));
100100
}
101-
$row[$column->getName()] = $column->transform($value, $result);
101+
$row[$column->getName()] = $value;
102102
}
103103

104104
return $match ? $row : null;

0 commit comments

Comments
 (0)