Skip to content

Commit

Permalink
Merge pull request #816 from loscsol/patch-1
Browse files Browse the repository at this point in the history
Fix typo in check if has xlFormat
  • Loading branch information
kartik-v authored Sep 7, 2018
2 parents 08ac983 + caf68dc commit f8bb896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ColumnTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public function renderPageSummaryCell()
public function parseExcelFormats(&$options, $model, $key, $index)
{
$autoFormat = $this->grid->autoXlFormat;
if (!isset($this->xlsFormat) && !$autoFormat) {
if (!isset($this->xlFormat) && !$autoFormat) {
return;
}
$fmt = '';
Expand Down

0 comments on commit f8bb896

Please sign in to comment.