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
Matias Niemelä

parent
a528006d7a
commit
f1bf5b26d1
@ -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