Comparing version 2.0.2 to 2.1.0
@@ -26,3 +26,3 @@ 'use strict'; | ||
var parents = [docs, project, category]; | ||
var parents = docs.url !== project.url && docs.title ? [docs].concat([project, category]) : [project, category]; | ||
var up = category; | ||
@@ -29,0 +29,0 @@ var prev = prevModel && { |
# History | ||
## v2.1.0 2017 March 21 | ||
- Don't render docs crumb if it is the same as project or has no title | ||
## v2.0.2 2017 March 20 | ||
@@ -4,0 +7,0 @@ - Added some more menu error debugging information to address https://travis-ci.org/bevry/learn/builds/212830485 |
{ | ||
"name": "outpatient", | ||
"version": "2.0.2", | ||
"version": "2.1.0", | ||
"description": "helpers for bevry websites", | ||
@@ -110,3 +110,3 @@ "homepage": "https://github.com/bevry/outpatient", | ||
"hyperscript": "^2.0.2", | ||
"moment": "^2.17.1", | ||
"moment": "^2.18.0", | ||
"underscore.string": "^3.3.4" | ||
@@ -113,0 +113,0 @@ }, |
@@ -21,3 +21,5 @@ 'use strict' | ||
const parents = [docs, project, category] | ||
const parents = (docs.url !== project.url && docs.title) | ||
? [docs].concat([project, category]) | ||
: [project, category] | ||
const up = category | ||
@@ -24,0 +26,0 @@ const prev = prevModel && { |
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
48685
1050
Updatedmoment@^2.18.0