-
Notifications
You must be signed in to change notification settings - Fork 894
My Jetpack: add 'View included features' link to Plans section #46520
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -59,6 +59,16 @@ export function getSectionTitle( section: string ) { | |
| return option?.label; | ||
| } | ||
|
|
||
| /** | ||
| * Check if a string is a valid ProductFilter. | ||
| * | ||
| * @param {string | null} value - The value to check. | ||
| * @return True if the value is a valid ProductFilter. | ||
|
manzoorwanijk marked this conversation as resolved.
manzoorwanijk marked this conversation as resolved.
|
||
| */ | ||
| export function isValidFilter( value: string | null ): value is ProductFilter { | ||
| return getProductsFilterChoices().some( item => item.value === value ); | ||
| } | ||
|
Comment on lines
+68
to
+70
|
||
|
|
||
| /** | ||
| * Filter sections based on the search term by matching the card and module data with the search term. | ||
| * | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| Significance: minor | ||
| Type: added | ||
|
|
||
| My Jetpack: add 'View included features' link to Plans section for quick access to plan features. |
Uh oh!
There was an error while loading. Please reload this page.