diff --git a/src/main/wrapper/ExecutionService.ts b/src/main/wrapper/ExecutionService.ts index 20123524..2610e735 100644 --- a/src/main/wrapper/ExecutionService.ts +++ b/src/main/wrapper/ExecutionService.ts @@ -58,7 +58,7 @@ function transform(n:string) { } let r = ""; - if(n) r = n.replace(/["']/g, "").replace("/[, ]/g",","); + if(n) r = n.replace(/"/g, "").replace("/[, ]/g",","); return r; }