Clean csv values; Update qfc - for audit count fix

This commit is contained in:
2023-05-19 11:51:20 -05:00
parent 61f7339400
commit 3a7cadf5c2
4 changed files with 19 additions and 10 deletions

View File

@ -107,7 +107,7 @@ function TableWidget(props: Props): JSX.Element
{selector: ".button", format: "skip"}
]
});
csv += `"${text}"`;
csv += `"${ValueUtils.cleanForCsv(text)}"`;
}
csv += "\n";
}