Skip to content
Snippets Groups Projects
Commit a0bd7a16 authored by Phil Hughes's avatar Phil Hughes
Browse files

Fixed an edge case with the number 0

parent 79aed1ea
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -52,7 +52,7 @@ export default class XlsxService {
columns.forEach((col) => {
const val = row[col];
 
if (val) {
if (typeof val !== 'undefined') {
arr.push(val);
} else {
arr.push('');
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment