Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
fix(normal style change bug): fit error
Browse files Browse the repository at this point in the history
  • Loading branch information
tubiaoge committed Sep 28, 2020
1 parent 568b5b6 commit f24eb7f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/controllers/inlineString.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,13 @@ export function enterKeyControll(cell){
}

export function updateInlineStringFormatOutside(cell, key, value){
if(cell.ct==null){
return;
}
let s = cell.ct.s;
if(s==null){
return;
}
for(let i=0;i<s.length;i++){
let item = s[i];
item[key] = value;
Expand Down

0 comments on commit f24eb7f

Please sign in to comment.