diff --git a/Grid/Column/Column.php b/Grid/Column/Column.php index b0496623..fcab142d 100644 --- a/Grid/Column/Column.php +++ b/Grid/Column/Column.php @@ -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;