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