-
Notifications
You must be signed in to change notification settings - Fork 1.8k
fix: fix the loss of column attributes due to incorrect column order #2222
New issue
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
Conversation
You have 1 unnecessary commit, Please rebase this branch |
I have already processed it, please check again |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🥇 Looks good to me, Thank you for the contribution!
This PR was reviewed during the MergeFest session.
dd0294a
to
0680219
Compare
@tanvirstreame |
I'm very sorry, I found that the username I submitted does not match the information I registered on GitHub. Can you use the following code to reset my submission information:#!/bin/sh
git filter-branch --env-filter '
***@***.***"
CORRECT_NAME="cpaiyueyue"
***@***.***"
if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ]
then
export GIT_COMMITTER_NAME="$CORRECT_NAME"
export GIT_COMMITTER_EMAIL="$CORRECT_EMAIL"
fi
if [ "$GIT_AUTHOR_EMAIL" = "$OLD_EMAIL" ]
then
export GIT_AUTHOR_NAME="$CORRECT_NAME"
export GIT_AUTHOR_EMAIL="$CORRECT_EMAIL"
fi
' --tag-name-filter cat -- --branches --tags
恋海蓝
***@***.***
…------------------ 原始邮件 ------------------
发件人: "Siemienik ***@***.***>;
发送时间: 2023年5月5日(星期五) 晚上9:09
收件人: ***@***.***>;
抄送: ***@***.***>; ***@***.***>;
主题: Re: [exceljs/exceljs] fix: fix the loss of column attributes due to incorrect column order (PR #2222)
You have 1 unnecessary commit, Please rebase this branch
@tanvirstreame
Sorry, but the additional commit is required to make me able to merge - the branch has to be up-to-date, and during MergeFest I usually merge some PRs, each updates the master making others PRs outdated.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
When I try to read the excel file and display it on the page, I found that the hidden columns of some files were not parsed correctly.
Summary
I found that if the order of the column data parsed here is not positive, the subsequent attributes will be overwritten

Test plan
Before modification


After modification