Fix template indentation

This commit is contained in:
romanrizzi 2019-05-13 17:18:36 -03:00
parent 8fca0f61e8
commit b4148a8858
4 changed files with 38 additions and 37 deletions

View File

@ -17,18 +17,19 @@
<tbody>
{{#each filteredTopics as |topic|}}
{{assigned-topic-list-item topic=topic
showTopicPostBadges=showTopicPostBadges
hideCategory=hideCategory
showPosters=showPosters
showLikes=showLikes
showOpLikes=showOpLikes
expandGloballyPinned=expandGloballyPinned
expandAllPinned=expandAllPinned
lastVisitedTopic=lastVisitedTopic
selected=selected
tagsForUser=tagsForUser
unassign=unassign
reassign=reassign}}
showTopicPostBadges=showTopicPostBadges
hideCategory=hideCategory
showPosters=showPosters
showLikes=showLikes
showOpLikes=showOpLikes
expandGloballyPinned=expandGloballyPinned
expandAllPinned=expandAllPinned
lastVisitedTopic=lastVisitedTopic
selected=selected
tagsForUser=tagsForUser
unassign=unassign
reassign=reassign}}
{{raw "list/visited-line" lastVisitedTopic=lastVisitedTopic topic=topic}}
{{/each}}
</tbody>

View File

@ -11,14 +11,14 @@
{{#if topics}}
{{assigned-topic-list showPosters=showPosters
hideCategory=hideCategory
topics=topics
expandExcerpts=expandExcerpts
selected=selected
skipHeader=skipHeader
tagsForUser=tagsForUser
unassign=unassign
reassign=reassign}}
hideCategory=hideCategory
topics=topics
expandExcerpts=expandExcerpts
selected=selected
skipHeader=skipHeader
tagsForUser=tagsForUser
unassign=unassign
reassign=reassign}}
{{else}}
{{#unless loadingMore}}
<div class='alert alert-info'>

View File

@ -12,13 +12,13 @@
<tbody>
{{#each topics as |t|}}
{{assigned-topic-list-item topic=t
expandGloballyPinned=expandGloballyPinned
expandAllPinned=expandAllPinned
lastVisitedTopic=lastVisitedTopic
selected=selected
tagsForUser=tagsForUser
unassign=unassign
reassign=reassign}}
expandGloballyPinned=expandGloballyPinned
expandAllPinned=expandAllPinned
lastVisitedTopic=lastVisitedTopic
selected=selected
tagsForUser=tagsForUser
unassign=unassign
reassign=reassign}}
{{/each}}
</tbody>
</table>

View File

@ -1,15 +1,15 @@
{{#load-more class="paginated-topics-list" selector=".paginated-topics-list .topic-list tr" action=(action "loadMore")}}
{{basic-assigned-topic-list topicList=model
hideCategory=hideCategory
showPosters=showPosters
bulkSelectEnabled=bulkSelectEnabled
selected=selected
hasIncoming=hasIncoming
incomingCount=incomingCount
showInserted=(action "showInserted")
tagsForUser=tagsForUser
unassign=(action 'unassign')
reassign=(action 'reassign')}}
hideCategory=hideCategory
showPosters=showPosters
bulkSelectEnabled=bulkSelectEnabled
selected=selected
hasIncoming=hasIncoming
incomingCount=incomingCount
showInserted=(action "showInserted")
tagsForUser=tagsForUser
unassign=(action 'unassign')
reassign=(action 'reassign')}}
{{conditional-loading-spinner condition=model.loadingMore}}
{{/load-more}}