Increase specificity in passing properties

This commit is contained in:
Justin DiRose 2019-07-14 14:21:53 -05:00
parent d62e856fc5
commit af0243cee8
4 changed files with 5 additions and 5 deletions

View File

@ -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}}

View File

@ -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}}

View File

@ -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">

View File

@ -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>