Skip to content
Snippets Groups Projects
Commit c927677f authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

remove console

parent 7e9f1610
No related branches found
No related tags found
1 merge request!167Download server data
Pipeline #119052 failed with stages
in 6 minutes and 30 seconds
......@@ -48,9 +48,6 @@ export function useCsvDownload(baseName: MaybeRef<string> = "df"
return sanitizedRow
})
console.log(sanitizedData)
const csvContent = Papa.unparse(sanitizedData, { columns: toValue(columns) });
const blob = new Blob([csvContent], { type: 'text/csv;charset=utf-8;' });
saveAs(blob, `${toValue(filename)}`);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment