-
-
Notifications
You must be signed in to change notification settings - Fork 714
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
fix(sheets): boolean should store as number #1605
Conversation
close #1534 BREAKING CHANGE: Before: Boolean values ("TRUE" "FALSE") were stored in the IWorkbooData as strings. After: Boolean values would be store as number (0, 1).
@zhaolixin7 Please verify that Boolean values ( |
View Deployment
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #1605 +/- ##
==========================================
- Coverage 32.42% 32.38% -0.05%
==========================================
Files 923 924 +1
Lines 52174 52182 +8
Branches 10896 10893 -3
==========================================
- Hits 16920 16897 -23
- Misses 35254 35285 +31 ☔ View full report in Codecov by Sentry. |
49fdb85
to
aa83aeb
Compare
@@ -57,6 +57,7 @@ import { | |||
|
|||
import { Inject } from '@wendellhu/redi'; | |||
import { distinctUntilChanged, startWith } from 'rxjs'; | |||
import { extractPureTextFromCell } from '@univerjs/core/sheets/worksheet.js'; |
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.
导出到 index.ts再引入
* fix(sheets): boolean should store as number close #1534 BREAKING CHANGE: Before: Boolean values ("TRUE" "FALSE") were stored in the IWorkbooData as strings. After: Boolean values would be store as number (0, 1).
close #1534
BREAKING CHANGE:
Before:
Boolean values ("TRUE" "FALSE") were stored in the IWorkbooData as strings.
After:
Boolean values would be store as number (0, 1).
dev
branch.