aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_services/csv-parse.service.ts
diff options
context:
space:
mode:
authorSonja Galovic <galovicsonja@gmail.com>2022-03-30 15:48:24 +0200
committerSonja Galovic <galovicsonja@gmail.com>2022-03-30 15:48:24 +0200
commitca049bd93441f509aae546e9c4cce528e86a5284 (patch)
treeb414dab1c54eccb5ddf05248acd5354a1d002942 /frontend/src/app/_services/csv-parse.service.ts
parentdf2a11aae7a522d50e1e0f97e6a45788b9120c10 (diff)
Add-model - null vrednosti. Sredjen niz za slanje back-u, unos korisnika i dugmici koji se medjusobno iskljucuju. Sredjen prikaz korisniku onda kad kolona nema nedostajucih vrednosti.
Diffstat (limited to 'frontend/src/app/_services/csv-parse.service.ts')
-rw-r--r--frontend/src/app/_services/csv-parse.service.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/app/_services/csv-parse.service.ts b/frontend/src/app/_services/csv-parse.service.ts
index b9b761a0..e44af238 100644
--- a/frontend/src/app/_services/csv-parse.service.ts
+++ b/frontend/src/app/_services/csv-parse.service.ts
@@ -45,7 +45,7 @@ export class CsvParseService {
strMatchedValue = arrMatches[3];
}
- if (strMatchedValue.length > 0)
+ //if (strMatchedValue.length > 0)
arrData[arrData.length - 1].push(strMatchedValue);
}