assets/javascript/templates/index.hbs in logster-0.8.4.2.pre vs assets/javascript/templates/index.hbs in logster-0.8.4.3.pre

- old
+ new

@@ -3,17 +3,18 @@ <thead> <tr> <th class="count"></th> <th class="severity"></th> <th class="info">Info</th> + <th class="protected"></th> <th class="time">Time</th> </tr> </thead> <tbody> {{#if model.moreBefore}} <tr {{action "showMoreBefore"}} class="show-more"> - <td colspan=4>{{model.totalBefore}} more</td> + <td colspan=5>{{model.totalBefore}} more</td> </tr> {{/if}} {{#each model.messages as |message|}} {{message-row model=message selectedMessage="selectMessage"}} {{/each}} @@ -33,17 +34,20 @@ {{input type="checkbox" checked=showInfo}} Info </label> <label class="warn"> {{input type="checkbox" checked=showWarn}} + <i class='fa fa-exclamation-circle warning'></i> Warning </label> <label class="error"> {{input type="checkbox" checked=showErr}} + <i class='fa fa-times-circle error'></i> Error </label> <label class="fatal"> {{input type="checkbox" checked=showFatal}} + <i class='fa fa-times-circle fatal'></i> Fatal </label> <label class="search"> {{input type="textfield" placeholder="Search" value=search}} </label>