Skip to content
This repository has been archived by the owner on Feb 1, 2019. It is now read-only.

Commit

Permalink
Merge da16add into 81b290e
Browse files Browse the repository at this point in the history
  • Loading branch information
LinuxBozo committed May 18, 2015
2 parents 81b290e + da16add commit e475fa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/partials/errorDetail-Q029.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<td class="col-group-first" aria-hidden="true">&nbsp;</td>
</tr>
<tr role="row">
<th scope="col" role="columnheader" class="id" ng-class="{'cf-icon icon-up': isSortedUp('properties[\'LAR number\']'), 'cf-icon icon-down': isSortedDown('properties[\'LAR number\']')}" ng-click="sort('properties[\'LAR number\']')" aria-sort="{{isSortedBy('properties[\'LAR number\']')}}">LAR Number</th>
<th scope="col" role="columnheader" class="id" ng-class="{'cf-icon icon-up': isSortedUp('properties[\'LAR number\']'), 'cf-icon icon-down': isSortedDown('properties[\'LAR number\']')}" ng-click="sort('properties[\'LAR number\']')" aria-sort="{{isSortedBy('properties[\'LAR number\']')}}">Loan/Application Number</th>
<th scope="col" role="columnheader" class="state_code" ng-class="{'cf-icon icon-up': isSortedUp('properties[\'Reported State Code\']'), 'cf-icon icon-down': isSortedDown('properties[\'Reported State Code\']')}" ng-click="sort('properties[\'Reported State Code\']')" aria-sort="{{isSortedBy('properties[\'Reported State Code\']')}}">State Code</th>
<th scope="col" role="columnheader" class="county_code" ng-class="{'cf-icon icon-up': isSortedUp('properties[\'Reported County Code\']'), 'cf-icon icon-down': isSortedDown('properties[\'Reported County Code\']')}" ng-click="sort('properties[\'Reported County Code\']')" aria-sort="{{isSortedBy('properties[\'Reported County Code\']')}}">County Code</th>
<th scope="col" role="columnheader" class="census_tract" ng-class="{'cf-icon icon-up': isSortedUp('properties[\'Reported Census Tract\']'), 'cf-icon icon-down': isSortedDown('properties[\'Reported Census Tract\']')}" ng-click="sort('properties[\'Reported Census Tract\']')" aria-sort="{{isSortedBy('properties[\'Reported Census Tract\']')}}">Census Tract</th>
Expand Down
2 changes: 1 addition & 1 deletion app/partials/errorDetail.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</thead>
<tbody ng-repeat="item in error.errors | paginate:start():end()">
<tr ng-repeat="(key, value) in item.properties">
<th class="{{error.scope === 'lar' ? 'loan-number':'line-number'}}" scope="row" rowspan="{{item.properties | keyLength}}" ng-if="$first">{{item.loanNumber || item.lineNumber}}</th>
<th class="{{error.scope === 'lar' ? 'loan-number':'line-number'}}" scope="row" rowspan="{{item.properties | keyLength}}" ng-if="$first">{{error.scope == 'lar' ? item.loanNumber : item.lineNumber}}</th>
<td class="description">{{ {'property':key, 'lineNumber':item.lineNumber} | hmdaLabel:error.scope}}</td>
<td class="value">{{value | hmdaValue:error.scope:key}}</td>
<td class="action" rowspan="{{item.properties | keyLength}}" ng-if="$first && editType !== 'quality'">Correct and revalidate</td>
Expand Down

0 comments on commit e475fa7

Please sign in to comment.