fix check for show_in_breadcrumbs option

This commit is contained in:
Helmut Merz 2015-04-17 10:50:21 +02:00
parent 58b4db66cc
commit 05b13e154f

View file

@ -284,7 +284,8 @@ class ConceptView(BaseView):
@Lazy
def showInBreadcrumbs(self):
return self.options('show_in_breadcrumbs')
return (self.options('show_in_breadcrumbs') or
self.typeOptions('show_in_breadcrumbs'))
@Lazy
def breadcrumbsParent(self):