From 430ead74bbe8e43d99bf902077c6825dc10d40ad Mon Sep 17 00:00:00 2001 From: rogerb121 <109387723+rogerb121@users.noreply.github.com> Date: Sat, 12 Jul 2025 14:46:04 -0700 Subject: [PATCH] Update editorial-dashboard.qmd to fix editor count mismatch File : metrics -> peer-review -> editorial-dashboard.qmd Change value = len(editor_data) to value = len(all_editor_activity) at line.no : 142 This aligns all three metrics to the same base and resolves the mismatch. As stated by: Vamsi-aki --- peer-review/editorial-dashboard.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peer-review/editorial-dashboard.qmd b/peer-review/editorial-dashboard.qmd index e5f7298..a19f158 100644 --- a/peer-review/editorial-dashboard.qmd +++ b/peer-review/editorial-dashboard.qmd @@ -139,7 +139,7 @@ available_editors = available_editors[["editor", "review count", "Domain_areas", dict( icon = "box2-heart", color = "primary", - value = len(editor_data) + value = len(all_editor_activity) ) ```