-
-
Notifications
You must be signed in to change notification settings - Fork 50.8k
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: The 'indentSize' in the Table component couldn't be zero value #25890
Conversation
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 3f8b9b5:
|
CI failed |
@07akioni When I run |
@@ -1518,11 +1512,8 @@ exports[`Cascader should render not found content 1`] = ` | |||
motionEnter={false} | |||
motionLeave={false} | |||
motionName="slide-up" | |||
onAppearStart={[Function]} |
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.
You should't update this, please run npm test -- -u
after reinstall node_modules
.
Could you add a test case? |
Codecov Report
@@ Coverage Diff @@
## master #25890 +/- ##
=======================================
Coverage 99.57% 99.57%
=======================================
Files 373 373
Lines 7306 7307 +1
Branches 2038 1991 -47
=======================================
+ Hits 7275 7276 +1
Misses 31 31
Continue to review full report at Codecov.
|
- Used check with typeof === number instead of `undefined` and `null`
[中文版模板 / Chinese template]
🤔 This is a ...
🔗 Related issue link
#25798
💡 Background and solution
Before:
mergedExpandable.indentSize = mergedExpandable.indentSize || indentSize || 15;
After:
📝 Changelog
indentSize
couldn't be zero value.☑️ Self Check before Merge