Merge branch 'v8/dev' into v8/8.18

This commit is contained in:
Sebastiaan Janssen
2022-02-01 11:36:26 +01:00

View File

@@ -259,8 +259,8 @@ function navigationService($routeParams, $location, $q, $injector, eventsService
var updated = false;
retainedQueryStrings.forEach(r => {
// if mculture is set to null in nextRouteParams, the value will be undefined and we will not retain any query string that has a value of "null"
if (currRouteParams[r] && nextRouteParams[r] !== undefined && !nextRouteParams[r]) {
// testing explicitly for undefined in nextRouteParams here, as it must be possible to "unset" e.g. mculture by specifying a null value
if (currRouteParams[r] && nextRouteParams[r] === undefined) {
toRetain[r] = currRouteParams[r];
updated = true;
}