(js) Fix closing tag in sgMessageListItemMain

pull/259/head
Francis Lachapelle 2019-10-02 09:18:30 -04:00
parent f7e60348ca
commit 6d2094bf83
1 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,7 @@
' <div class="sg-tile-subject"><!-- subject --></div>',
' <div class="sg-tile-size"><!-- size --></div>',
' <md-button class="sg-tile-thread md-secondary ng-hide" md-colors="::{ color: \'accent-600\'}" ng-click="$ctrl.toggleThread()">',
' <md-icon class="md-rotate-180-ccw" md-colors="::{ color: \'accent-600\'}">expand_more</md-icon><span><span>', // expanded by default (icon is rotated)
' <md-icon class="md-rotate-180-ccw" md-colors="::{ color: \'accent-600\'}">expand_more</md-icon><span></span>', // expanded by default (icon is rotated)
' </md-button>',
' </div>',
'</div>',
@ -169,6 +169,7 @@
// Subject
$ctrl.subjectElement.innerHTML = $ctrl.message.subject.encodeEntities();
// Message size
$ctrl.sizeElement.innerHTML = $ctrl.message.size;