Increase specificity in passing properties
This commit is contained in:
parent
d62e856fc5
commit
af0243cee8
|
@ -2,7 +2,7 @@
|
|||
{{#unless tag.active}}
|
||||
{{d-icon "plus"}}
|
||||
{{/unless}}
|
||||
{{tag.id}} <span class="tag-count">({{tag.count}})</span>
|
||||
<span class="tag-id">{{tag.id}}</span><span class="tag-count">({{tag.count}})</span>
|
||||
{{#if tag.active}}
|
||||
{{d-icon "times-circle"}}
|
||||
{{/if}}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{#each model.tags as |tag|}}
|
||||
{{#each tags as |tag|}}
|
||||
{{knowledge-explorer-tag tag=tag}}
|
||||
{{/each}}
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<th>Activity</th>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each model.topics as |topic|}}
|
||||
{{#each topics as |topic|}}
|
||||
<tr>
|
||||
<td class="main-link">
|
||||
<span class="link-top-line">
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<div class="knowledge-explorer">
|
||||
{{knowledge-explorer-tags
|
||||
model=model
|
||||
tags=model.tags
|
||||
searchResults=searchResults}}
|
||||
{{knowledge-explorer-topic-list model=model}}
|
||||
{{knowledge-explorer-topic-list topics=model.topics}}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue