We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f5001b commit ffb1012Copy full SHA for ffb1012
src/Jobs/DataTableExportJob.php
@@ -94,6 +94,8 @@ public function handle()
94
? (new StyleBuilder)->setFormat($column['exportFormat'])->build()
95
: null;
96
97
+ $value = is_numeric($value) ? (float) $value : $value;
98
+
99
$cells->push(WriterEntityFactory::createCell($value, $format));
100
}
101
});
0 commit comments