fix check for show_in_breadcrumbs option
This commit is contained in:
parent
58b4db66cc
commit
05b13e154f
1 changed files with 2 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue