-
Notifications
You must be signed in to change notification settings - Fork 453
fix: shortcut operation attribute configuration internationalization and icon configuration closed abnormally #970
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: shortcut operation attribute configuration internationalization and icon configuration closed abnormally #970
Conversation
WalkthroughThe pull request modifies the Changes
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
🧹 Nitpick comments (2)
packages/canvas/container/src/components/CanvasAction.vue (2)
266-267: Consider optimizing the className check.The current implementation uses
JSON.stringifyon the className, which might be unnecessary. Consider using the nativeclassNamestring orclassListAPI for better performance.- let name = JSON.stringify(parent.className) - if (preventClassNameList.some((item) => name?.includes(item))) { + if (preventClassNameList.some((item) => + parent.classList?.contains(item) || + parent.className?.includes(item) + )) {
270-271: Simplify the recursive implementation.The current implementation uses a flag variable that's unnecessary due to the early return condition. Consider simplifying the recursive call.
- flag = findParentHasClass(parent) - - return flag + return findParentHasClass(parent)
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
packages/canvas/container/src/components/CanvasAction.vue(1 hunks)
🔇 Additional comments (1)
packages/canvas/container/src/components/CanvasAction.vue (1)
264-265: LGTM! Clear and maintainable list of prevented class names.
The list of class names that prevent event propagation is well-defined and includes the necessary UI components, particularly the internationalization configuration area mentioned in the PR objective.
English | 简体中文
PR
PR Checklist
Please check if your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
Background and solution
What is the current behavior?
点击国际化配置区域会导致当前属性配置弹窗整体关闭

Issue Number: N/A
What is the new behavior?
Does this PR introduce a breaking change?
Other information
Summary by CodeRabbit