Browse Source
Merge pull request #778 from cdswyda/fix/hyperlink
fix(hyperlinkCtrl): 修复插入链接后,再次编辑链接,链接文本为还原显示的bug
master
Dushusir
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/controllers/hyperlinkCtrl.js
|
@ -169,7 +169,7 @@ const hyperlinkCtrl = { |
|
|
|
|
|
|
|
|
cell.fc = 'rgb(0, 0, 255)'; |
|
|
cell.fc = 'rgb(0, 0, 255)'; |
|
|
cell.un = 1; |
|
|
cell.un = 1; |
|
|
cell.v = linkText; |
|
|
cell.v = cell.m = linkText; |
|
|
|
|
|
|
|
|
d[rowIndex][colIndex] = cell; |
|
|
d[rowIndex][colIndex] = cell; |
|
|
|
|
|
|
|
|