Skip to content

Commit

Permalink
readded missing view data
Browse files Browse the repository at this point in the history
  • Loading branch information
goellner committed Sep 15, 2019
1 parent 6aab8d9 commit c7a5676
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion DataImporter/DataImporterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ public function showdata()
$this->request->session()->put('uploaded_data_keys', $uploaded_data_keys);

$data = [
'file' => $uploaded_data->data
'file' => $uploaded_data->data,
'row_count' => count($uploaded_data->data),
'preview_count' => $this->previewCount($uploaded_data->data),
];
return $this->view('showdata', $data);
}
Expand Down

0 comments on commit c7a5676

Please sign in to comment.