Skip to content

Commit

Permalink
Fixed issue with actions required calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Nov 29, 2022
1 parent a247739 commit 7c8a089
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/app/dashboard/view/Dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export function Dashboard () {
(users?.length || 0) +
(disabledSources?.length || 0) +
(unApprovedRegistrations?.length || 0) +
(disabledSources?.length || 0) +
(disabledRegistrations.length || 0)
(unApprovedSources?.length || 0) +
(disabledRegistrations?.length || 0);
setActions(count);
}, [users, disabledSources, unApprovedSources, disabledRegistrations, unApprovedRegistrations]);

Expand Down

0 comments on commit 7c8a089

Please sign in to comment.