Skip to content

Commit

Permalink
Fixed Illegal offset type at Grid/Column/Column.php:216
Browse files Browse the repository at this point in the history
  • Loading branch information
unrealevil committed Sep 23, 2020
1 parent 58da64a commit 018a60d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Grid/Column/Column.php
Expand Up @@ -213,7 +213,7 @@ public function renderCell($value, $row, $router)

$value = is_bool($value) ? (int) $value : $value;
if (array_key_exists((string) $value, $this->values)) {
$value = $this->values[$value];
$value = $this->values[(string) $value];
}

return $value;
Expand Down

0 comments on commit 018a60d

Please sign in to comment.