-
Notifications
You must be signed in to change notification settings - Fork 809
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
Update/unowned section to list #41312
Conversation
Are you an Automattician? Please test your changes on all WordPress.com environments to help mitigate accidental explosions.
Interested in more tips and information?
|
Thank you for your PR! When contributing to Jetpack, we have a few suggestions that can help us test and review your patch:
This comment will be updated as you work on your PR and make changes. If you think that some of those checks are not needed for your PR, please explain why you think so. Thanks for cooperation 🤖 The e2e test report can be found here. Please note that it can take a few minutes after the e2e tests checks are complete for the report to be available. Follow this PR Review Process:
Still unsure? Reach out in #jetpack-developers for guidance! Jetpack plugin: The Jetpack plugin has different release cadences depending on the platform:
If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. Backup plugin:
If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. Boost plugin:
If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. Search plugin:
If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. Social plugin:
If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. Starter Plugin plugin:
If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. Protect plugin:
If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. Videopress plugin:
If you have any questions about the release process, please ask in the #jetpack-releases channel on Slack. |
8454715
to
37eaa07
Compare
Code Coverage SummaryCoverage changed in 2 files.
13 files are newly checked for coverage. Only the first 5 are listed here.
|
77fcbbc
to
0180d00
Compare
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.
Code looks good and could see that it works really well, just left a few minor comments. Feel free to merge after you address them if necessary.
import SearchIcon from './icons/search'; | ||
import SocialIcon from './icons/social'; | ||
import StatsIcon from './icons/stats'; | ||
import VideopressIcon from './icons/videopress'; |
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.
The smallest nitpick in the world: for some reason, the lowercase P in Videopress
everywhere it's being used is throwing me off 😅
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 think I personally prefer it this way due to the snake case being videopress_icon
, so I'll probably leave it 😅
@import '@wordpress/components/build-style/style.css'; | ||
|
||
:root { | ||
--font-size: 13px; |
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.
We usually use 16 as the base font-size and, comparing the mockups with the actual implementation, it looks smaller than in the mockups. Checking the values there, it also seems different. Did that change somewhere?
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.
Good catch, I'm not actually sure where this came from anymore, I'll remove this
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.
This was actually only updating the font size of the CTAs, the font sizes of the table itself come from the dataviews component.
} | ||
|
||
button.components-button.is-secondary { | ||
padding: calc( var(--spacing-base) / 2 ) var(--spacing-base) !important; |
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.
Would it be possible to get rid of important with more specificity? I know it's not always possible with how we've been using CSS Modules, but it helps to have a more predictable code and behavior.
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.
Not sure why this was required before 🤔
Seems to be working without it now, thanks!
… fix $not_shown_products.
* Add filter for dataview list * Add changelog * Update filter styling * Change how category label is capitlized
2fe5693
to
243e94b
Compare
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.
Styling changes look good.
Proposed changes:
Other information:
Jetpack product discussion
P2: pghfsA-2S-p2
Does this pull request change what data or activity we track or use?
Yes, we are adding a new usage of the Action Button with a unique identifier for the tracks used in the DataView. The same types of actions are being tracked, but with different event names
Testing instructions:
NOTE: Social says
Activate
when it needs user connection. This is an existing issue and I have added a maintenance item to handle this separatelyFeel free to try any other CTA actions that show up, from my testing I think the only ones that show up are
Learn More
andActivate
. Hopefully after the maintenance task to fix Social, it only ever shows "Learn More" but I don't think anything is broken despite that