fix(router/instruction): ensure toLinkUrl includes extra params
Closes #7367
This commit is contained in:

committed by
Alex Eagle

parent
b5c769e1e4
commit
0d58b137a7
@ -160,7 +160,7 @@ export abstract class Instruction {
|
||||
// default instructions override these
|
||||
toLinkUrl(): string {
|
||||
return this.urlPath + this._stringifyAux() +
|
||||
(isPresent(this.child) ? this.child._toLinkUrl() : '');
|
||||
(isPresent(this.child) ? this.child._toLinkUrl() : '') + this.toUrlQuery();
|
||||
}
|
||||
|
||||
// this is the non-root version (called recursively)
|
||||
|
Reference in New Issue
Block a user