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
Description
After update CellHyperLink, GetCellHyperLink won't return the latest link.
Steps to reproduce the issue:
Run:
func TestUpdateHL (t *testing.T) { file := excelize.NewFile() err := file.SetCellHyperLink("Sheet1", "A1", "https://github.com", "External") if err != nil { fmt.Println(err) } err = file.SetCellHyperLink("Sheet1", "A1", "https://baidu.com", "External") if err != nil { fmt.Println(err) } _, link, _ := file.GetCellHyperLink("Sheet1", "A1") assert.Equal(t, "https://baidu.com", link) file.Close() }
Describe the results you received:
FAIL expected: "https://baidu.com" actual : "https://github.com"
Output of go version:
go version
go version go1.18.1 linux/amd64
Excelize version or commit ID:
commit 856ee57
Environment details (OS, Microsoft Excel™ version, physical, etc.): Linux
The text was updated successfully, but these errors were encountered:
773d4af
Thanks for your issue, I have fixed it. Please upgrade to the master branch code, and this patch will be released in the next version.
Sorry, something went wrong.
This closes qax-os#1217, support update cell hyperlink
43c90cb
Ref qax-os#1129, make `SetRowStyle` overwrite style of the cells
8ff5016
25e1459
No branches or pull requests
Description
After update CellHyperLink, GetCellHyperLink won't return the latest link.
Steps to reproduce the issue:
Run:
Describe the results you received:
Output of
go version
:Excelize version or commit ID:
commit 856ee57
Environment details (OS, Microsoft Excel™ version, physical, etc.):
Linux
The text was updated successfully, but these errors were encountered: