Comparing version 0.9.2 to 0.9.3
@@ -227,3 +227,3 @@ "use strict"; | ||
return this.component.childRoute(name); | ||
var route = this.component.children().filter(function (x) { return isRouted(x) && x.routeName == name; }); | ||
var route = this.component.children().filter(function (x) { return isRouted(x) && util_1.equalsIgnoreCase(x.routeName, name); }); | ||
return !route.length ? undefined : route[0]; | ||
@@ -230,0 +230,0 @@ }; |
{ | ||
"name": "pickle-ts", | ||
"version": "0.9.2", | ||
"version": "0.9.3", | ||
"author": "pickle", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -175,3 +175,3 @@ import { Component } from './component' | ||
const route = this.component.children().filter(x => isRouted(x) && x.routeName == name) | ||
const route = this.component.children().filter(x => isRouted(x) && equalsIgnoreCase (x.routeName, name)) | ||
return ! route.length ? undefined : route[0] as IRouted | ||
@@ -178,0 +178,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
237131