mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
fix(angular): save internal data
fixes #14888 fixes #14885 fixes #15054 fixes #15050
This commit is contained in:
@ -62,6 +62,9 @@ export function matches(view: ViewController | undefined, id: string, params: Co
|
||||
const currentParams = view.params;
|
||||
const null1 = (currentParams == null);
|
||||
const null2 = (params == null);
|
||||
if (currentParams === params) {
|
||||
return true;
|
||||
}
|
||||
if (null1 !== null2) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user