-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Biz/dj 2789 show prop label instead of the value #15370
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
Biz/dj 2789 show prop label instead of the value #15370
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ |
WalkthroughThe pull request introduces changes to the Changes
Sequence DiagramsequenceDiagram
participant User
participant ControlSelect
participant Options
User->>ControlSelect: Select dropdown option
ControlSelect->>Options: Check selected value
Options-->>ControlSelect: Match option details
ControlSelect->>ControlSelect: Create option object
ControlSelect->>User: Display option label
Possibly related PRs
Suggested reviewers
Poem
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 (1)
packages/connect-react/src/components/ControlSelect.tsx (1)
50-60
: LGTM! The refactored logic improves label handling.The changes effectively implement the requirement to show prop labels instead of values for string array props. The new implementation properly initializes the object before searching for matching options, making the code more maintainable.
A minor optimization suggestion: Consider using
find
instead of afor
loop to improve readability.- for (const item of options) { - if (item.value === o) { - obj = item; - break; - } - } + const matchingOption = options.find(item => item.value === o); + if (matchingOption) { + obj = matchingOption; + }
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (2)
packages/connect-react/examples/nextjs/package-lock.json
is excluded by!**/package-lock.json
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (3)
packages/connect-react/CHANGELOG.md
(1 hunks)packages/connect-react/package.json
(1 hunks)packages/connect-react/src/components/ControlSelect.tsx
(1 hunks)
✅ Files skipped from review due to trivial changes (1)
- packages/connect-react/package.json
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: pnpm publish
🔇 Additional comments (1)
packages/connect-react/CHANGELOG.md (1)
4-7
: LGTM! Clear and accurate changelog entry.The changelog entry properly documents the change in behavior for displaying prop labels instead of values in dropdown selections.
WHY
Summary by CodeRabbit
New Features
Chores
1.0.0-preview.23
Bug Fixes