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

Commit

Permalink
fix(cell): render
Browse files Browse the repository at this point in the history
1.Fix:cell render cannot get options 2.update github actions
  • Loading branch information
谢雷君 authored and 谢雷君 committed Dec 4, 2020
1 parent d68ac01 commit ba21140
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-demo.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Github pages deploy
name: Luckysheet demo github pages deploy

on:
push:
branches:
- master
tags:
- v*
- 'v*'

jobs:
publish:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/github-doc.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Github pages deploy
name: Luckysheet docs github pages deploy

on:
push:
branches:
- master
tags:
- doc*
- 'doc*'

jobs:
publish:
Expand Down
4 changes: 3 additions & 1 deletion src/global/setdata.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ function setcellvalue(r, c, d, v) {
if(d == null){
d = Store.flowdata;
}
let cell = $.extend(true, {}, d[r][c]);
// 若采用深拷贝,初始化时的单元格属性丢失
// let cell = $.extend(true, {}, d[r][c]);
let cell = d[r][c];

let vupdate;

Expand Down

0 comments on commit ba21140

Please sign in to comment.