mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 17:45:40 -05:00
Fixed #1573.
This commit is contained in:
parent
8042f27ba7
commit
791c23c7e7
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
|||
li.list-group-item= component.get('system') + '.' + component.get('name')
|
||||
ul
|
||||
// .list-group for different layout
|
||||
each doc in component.attributes.propertyDocumentation
|
||||
each doc in (component.attributes.propertyDocumentation ? component.attributes.propertyDocumentation : [])
|
||||
a(href="##{component.get('name')}#{doc.name}")
|
||||
li.list-group-item
|
||||
| #{doc.name}
|
||||
|
@ -24,7 +24,7 @@
|
|||
div(class="panel-body")
|
||||
| #{component.get('description')}
|
||||
ul
|
||||
each doc in component.attributes.propertyDocumentation
|
||||
each doc in (component.attributes.propertyDocumentation ? component.attributes.propertyDocumentation : [])
|
||||
li.list-group-item(id="#{component.get('name')}#{doc.name}")
|
||||
| #{doc.name}
|
||||
ul.special-list
|
||||
|
|
Loading…
Reference in a new issue