Skip to content

Commit

Permalink
Show feedback counts to admins
Browse files Browse the repository at this point in the history
  • Loading branch information
hbiede committed Sep 10, 2020
1 parent 63352d5 commit b6452bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"changes": [
"## 1.4.9\n- Display feedback count on admin table",
"## 1.4.8\n- Add interaction type tracking\n- Prevent duplicate interaction tracking",
"## 1.4.7\n- Allow viewing stats as a non-admin",
"## 1.4.6\n- Add stats to admin table",
Expand Down
2 changes: 1 addition & 1 deletion src/components/SummaryTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const SummaryTable = ({ showLA }: Props) => {
{row.avg !== null &&
!Number.isNaN(row.avg) &&
row.avg.toFixed
? row.avg.toFixed(2)
? `${row.avg.toFixed(2)} (${row.fCount})`
: 'No Reviews'}
</td>
</tr>
Expand Down

0 comments on commit b6452bb

Please sign in to comment.