fix(router): make routerLinkActive work with query params which contain arrays (#22666)
The url_tree equalQueryParams and containsQueryParam methods did not handle query params that has arrays, which resulted in the routerLinkActive to not behave as expected, change was made to ensure query params with arrays are handled correctly fixes #22223 PR Close #22666
This commit is contained in:

committed by
Kara Erickson

parent
06e36e5972
commit
8e5ed203bc
@ -25,7 +25,7 @@ export const PRIMARY_OUTLET = 'primary';
|
||||
* @publicApi
|
||||
*/
|
||||
export type Params = {
|
||||
[key: string]: any
|
||||
[key: string]: any;
|
||||
};
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user