Prevent search request in the Extensions > My Subscriptions page (#51164)
* Prevent search request in the Extensions > My Subscriptions page * Add changefile(s) from automation for the following project(s): woocommerce --------- Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
parent
f39e1d72c0
commit
0e930533e9
|
@ -73,7 +73,8 @@ export default function Content(): JSX.Element {
|
|||
|
||||
if (
|
||||
query.tab === undefined ||
|
||||
( query.tab && [ '', 'discover' ].includes( query.tab ) )
|
||||
( query.tab &&
|
||||
[ '', 'discover', 'my-subscriptions' ].includes( query.tab ) )
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Prevent search request in the Extensions > My Subscriptions page
|
Loading…
Reference in New Issue