-
Notifications
You must be signed in to change notification settings - Fork 81
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
Removed the border-radius on align left #754
Removed the border-radius on align left #754
Conversation
@Spoorthy1423 Thank you - if you can, it'd be a bit easier if you just pushed new commits to already open pull request rather than closing after every feedback, so we can follow what happened and why. I will loop in @AllanOXDi for review here - Allan, also please note #753 (comment) |
lib/KCard/index.vue
Outdated
@@ -320,7 +320,7 @@ | |||
}, | |||
thumbnailStyles: { | |||
...thumbnailCommonStyles, | |||
borderRadius: '8px 0 0 8px', | |||
borderRadius: '0 8px 8px 0', |
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.
Hi @Spoorthy1423 . Thanks for you work here. I have reviewed it and I think it's still breaking when it's align left.
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.
I guess we will need to swap it when the thumbnail is on the right
borderRadius: '0 8px 8px 0',
And when the thumbnail is on the left
borderRadius: '8px 0 0 8px',
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.
Once we confirm that everything is looking good we will go a head and merge it.
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.
Hi @Spoorthy1423 Thanks for updating the logic . I just want to note that the linting check is failing. Could you run pre-commit as described in this section of the developer documentation? and commit it again.
I will let my colleague @MisRob to give it a second eye and we merge
@AllanOXDi i am actually facing this issue (myenv) spoorthymadasu@spoorthys-MacBook-Air kolibri-design-system % pre-commit run --all-files do i need to create a pre-commit-config.yaml |
Sorry could you try |
I guess you will have to do |
Hi @Spoorthy1423 I am going to reopen this PR and close the one you just opened. Reason being that this one already have the reviews |
As for the failing lint check. I have just fixed that and it should pass. I will wait for my colleague to give it a final look and we will proceed to marge it. |
Thanks both. Just few changelog tweaks to help the release manager and should be good to go. |
Co-authored-by: Michaela Robosova <[email protected]>
Co-authored-by: Michaela Robosova <[email protected]>
Co-authored-by: Michaela Robosova <[email protected]>
Co-authored-by: Michaela Robosova <[email protected]>
Co-authored-by: Michaela Robosova <[email protected]>
Hey!! both tqsm for letting me know we can commit change directly , if anything else needed, can u please let me know, i got some idea on how to make this work - tqsm . |
Thanks both here. All looks good to me now. I will merge it now and it will be a part of today's release. @Spoorthy1423 If part of the reason for so many prs was working with git, this is said to be a fun way to learn more https://learngitbranching.js.org/. Also, I usually recommend authors to preview "Files changed" tab here in GitHub UI to be sure that there are no changes that were not supposed to be there, ideally before marking the PR as ready for review. I really don't know much about you - just my best guesses of what may perhaps help to contribute smoothly. |
Thank you both for your patience in reviewing my multiple PRs. @MisRob, I will certainly follow your suggestions. The insights and knowledge I gained from this PR are invaluable. Thank you very much. |
Thanks for saying that - @AllanOXDi did most of the work (I'm just sticking my nose into things and commenting :) Good luck in your endeavors. |
#741 Removed border-radius on align left
Removed unused sections and
Removed border-radius when the thumbnail display is align left using thumbnailAlign prop and made thumbnail prop large.
Description
Issue addressed
Addresses #PR# HERE
Before/after screenshots
Changelog
[#PR no]: PR link
Steps to test
(optional) Implementation notes
At a high level, how did you implement this?
Does this introduce any tech-debt items?
Testing checklist
Reviewer guidance
After review
CHANGELOG.md
Comments