-
Notifications
You must be signed in to change notification settings - Fork 741
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 first instance context alignment and dropdown alignment #2768
Conversation
Signed-off-by: Efren Lim <[email protected]>
Signed-off-by: Efren Lim <[email protected]>
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the WalkthroughThe pull request introduces changes to the work history components in a Vue.js application. The modifications involve adding an Changes
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
🪧 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)
frontend/src/modules/contributor/components/details/work-history/contributor-details-work-history-item.vue (2)
3-3
: LGTM! Consider using template literal syntax enhancement.The positioning changes look good and properly address the alignment issues. The relative positioning and specific dropdown class provide the necessary styling hooks.
Consider simplifying the class binding syntax:
-:class="`${props.index === 0 ? 'first-item' : ''}`" +:class="{ 'first-item': props.index === 0 }"Also applies to: 7-7, 21-21
137-141
: Consider using CSS custom properties for magic numbers.While the margin adjustment fixes the alignment, using a magic number (-28px) could make future maintenance challenging.
Consider using a CSS custom property:
+<style> +:root { + --work-history-dropdown-offset: -28px; +} +</style> + <style scoped> .first-item .work-history-item-dropdown { - margin-top: -28px; + margin-top: var(--work-history-dropdown-offset); } </style>This makes the offset value more maintainable and allows for easy adjustments if needed.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
frontend/src/modules/contributor/components/details/contributor-details-work-history.vue
(1 hunks)frontend/src/modules/contributor/components/details/work-history/contributor-details-work-history-item.vue
(4 hunks)
🔇 Additional comments (2)
frontend/src/modules/contributor/components/details/work-history/contributor-details-work-history-item.vue (1)
77-77
: LGTM! Props type is correctly defined.The index prop addition is well-typed and necessary for the first-item styling logic.
frontend/src/modules/contributor/components/details/contributor-details-work-history.vue (1)
35-35
: LGTM! Index is correctly passed to child component.The integration of the index prop with the v-for directive is well implemented, enabling the first-item styling in the child component.
Also applies to: 40-40
Changes proposed ✍️
What
Fix button alignment for the work history item. Align the first instance of the context menu button to be aligned with the organization name. Also fixed the issue with the dropdown appearing a bit far from the button.
Why
UI bug fixes
Ticket
CM-1963
Checklist ✅
Feature
,Improvement
, orBug
.Summary by CodeRabbit
New Features
Refactor