From 9d96dc00212f3ec12f11544190920b6cbea7dfb5 Mon Sep 17 00:00:00 2001 From: Joshua Sigona Date: Sun, 22 Aug 2021 08:59:13 +0900 Subject: [PATCH] Added double precesion auto-fill in. --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index f52978a..9ef92a9 100644 --- a/src/App.js +++ b/src/App.js @@ -152,7 +152,7 @@ function TableEditor(p) { var promises=[] parse(fileData,{columns:true,skip_empty_lines:true}).forEach((entry)=>{ for (var col of fields) { - if (col.dataTypeID===23&&entry[col.name]==="") { + if ((col.dataTypeID===23||col.dataTypeID===701)&&entry[col.name]==="") { entry[col.name]=0 } }