Skip to content

Commit

Permalink
#76 Update columns order in case list
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Jan 16, 2017
1 parent 199fa9d commit 7ea6659
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/app/views/partials/case/case.list.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ <h4>List of cases ({{$vm.list.total || 0}} of {{$vm.caseStats.count}})</h4>
<thead>
<tr>
<th style="width: 10px;" class="p-0"></th>
<th style="width: 60px;">Assignee</th>
<th>Title</th>
<th style="width: 100px;">Tasks</th>
<th style="width: 100px;">Observables</th>
<th style="width: 60px;">Assignee</th>
<th style="width: 120px;">Date</th>
</tr>
</thead>
Expand All @@ -60,9 +60,6 @@ <h4>List of cases ({{$vm.list.total || 0}} of {{$vm.caseStats.count}})</h4>
<tr ng-class="{true:'tr-warning'}[currentCase.flag]" ng-repeat="currentCase in $vm.list.values">

<td class="p-0 bg-tlp-{{currentCase.tlp}} clickable" ng-click="$vm.addFilterValue('tlp', currentCase.tlp)"></td>
<td class="nowrap">
<user user-id="currentCase.owner" icon-only="true" icon-size="m"></user>
</td>
<td>
<div class="case-title">
<a ui-sref="app.case.details({caseId: currentCase.id})">#{{currentCase.caseId}} - {{currentCase.title}}</a>
Expand Down Expand Up @@ -96,6 +93,9 @@ <h4>List of cases ({{$vm.list.total || 0}} of {{$vm.caseStats.count}})</h4>
<td>
<a ui-sref="app.case.observables({caseId: currentCase.id})">{{currentCase.stats.artifacts.count}}</a>
</td>
<td class="nowrap">
<user user-id="currentCase.owner" icon-only="true" icon-size="m"></user>
</td>
<td>
<a href ng-click="$vm.addFilterValue('startDate', currentCase.startDate)">
<span tooltip="{{currentCase.startDate | showDate}}" tooltip-popup-delay="500" tooltip-placement="bottom">{{currentCase.startDate | shortDate}}</span>
Expand Down

0 comments on commit 7ea6659

Please sign in to comment.