mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 05:34:06 -08:00
Missed delimiter for CSV
This commit is contained in:
parent
e9f3d622f5
commit
3061ce2983
|
@ -467,7 +467,7 @@ class ReportsController extends Controller
|
|||
$row = [ ];
|
||||
|
||||
if (e(Input::get('company')) == '1') {
|
||||
$row[] = is_null($asset->company) ? '' : e($asset->company->name);
|
||||
$row[] = is_null($asset->company) ? '' : '"' e($asset->company->name).'"';
|
||||
}
|
||||
|
||||
if (e(Input::get('asset_name')) == '1') {
|
||||
|
|
Loading…
Reference in a new issue