We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Sheet.js, the var "sheetFront" was used with operator "+=", so each time we call execute with columns config, "sheetFront" is modified.
Can you try to clone "sheetFront" when generate is called :
Sheet.prototype.generate = function(){ var sheetFrontClone = sheetFront.slice(0); //.... if (colsWidth !== "") { sheetFrontClone += '<cols>' + colsWidth + '</cols>'; } xlsx.file(config.fileName, sheetFrontClone + '<x:sheetData>' + rows + '</x:sheetData>' + sheetBack); }
The text was updated successfully, but these errors were encountered:
I do many fixes in a fork, if you want see :
https://github.com/YoannB/Node-Excel-Export
Sorry, something went wrong.
No branches or pull requests
In Sheet.js, the var "sheetFront" was used with operator "+=", so each time we call execute with columns config, "sheetFront" is modified.
Can you try to clone "sheetFront" when generate is called :
The text was updated successfully, but these errors were encountered: