-
Notifications
You must be signed in to change notification settings - Fork 72
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 add icon being accidentally tiny #4975
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
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.
Looks good so far! In addition to my question below, I'm wondering about these additional use cases:
- CreateCustomLists.tsx
- CustomFieldForm.tsx
export * from "./CustomFieldsList"; | ||
export * from "./CustomFieldsModal"; |
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.
Were these just dangling unused components?
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.
Yep, they were exported here but neither was imported anywhere. ¯\_(ツ)_/¯
Passing run #8247 ↗︎
Details:
Review all test suite changes for PR #4975 ↗︎ |
@eastandwestwind CreateCustomLists and CustomFieldForm are not using the tiny incorrect AddIcon but rather a locally defined icon also called AddIcon that is a reasonable size. It's in ~/features/common/custom-fields/icons/AddIcon.tsx, you can see it on the "add a list value" button here: |
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.
Thanks for clarifying, looks good to me.
Passing run #8249 ↗︎
Details:
Review all test suite changes for PR #4975 ↗︎ |
Description Of Changes
Fixes add icon on some buttons mistakenly being wrong size.
Changes icon on:
ScrollableList component used in privacy experience/notice forms:
Before:
After:
Data uses tab in system information form (both empty state and when data uses are present):
Before:
After:
Code Changes
Pre-Merge Checklist
CHANGELOG.md