-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
feat(ui): 新增api.addUiMenu #11032
feat(ui): 新增api.addUiMenu #11032
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## master #11032 +/- ##
==========================================
- Coverage 29.21% 29.19% -0.03%
==========================================
Files 479 479
Lines 14385 14398 +13
Branches 3381 3385 +4
==========================================
Hits 4203 4203
- Misses 9455 9468 +13
Partials 727 727
... and 1 file with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
Object.assign(memo, { | ||
ui: { | ||
modules: uiModules, | ||
}, | ||
}); | ||
return memo; |
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.
为啥要这么用,直接 memo.ui
不就好了,这样会慢 40% ,参考 benchmark 。
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.
学习了,我后面改掉
No description provided.