Skip to content

Commit

Permalink
#608 code cleanup WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
arawinters committed Dec 5, 2023
1 parent 8b04674 commit 39c6e44
Show file tree
Hide file tree
Showing 2 changed files with 313 additions and 318 deletions.
4 changes: 2 additions & 2 deletions src/lib/charts/records-by-datasources/sz-donut.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</li>
<li class="legend-items" *ngIf="totalUnmatchedRecordCount > 0">
<div>
<span class="legend__color-dot item-unmatched" [style.backgroundColor]="unnamedRecordsColor"></span>
<span class="legend__color-dot item-unmatched"></span>
<span class="legend__count">{{
totalUnmatchedRecordCount < 1000? totalUnmatchedRecordCount: (totalUnmatchedRecordCount | SzShortNumber : '0.0a')
}}</span>
Expand All @@ -43,7 +43,7 @@
</li>
<li class="legend-items" *ngIf="totalPendingRecordCount > 0">
<div>
<span class="legend__color-dot item-pending" [style.backgroundColor]="pendingLoadColor"></span>
<span class="legend__color-dot item-pending"></span>
<span class="legend__count">{{
totalPendingRecordCount < 1000? totalPendingRecordCount: (totalPendingRecordCount | SzShortNumber : '0.0a')
}}</span>
Expand Down
Loading

0 comments on commit 39c6e44

Please sign in to comment.