diff --git a/src/common/data/copy.json b/src/common/data/copy.json
index eac9782..9985d60 100644
--- a/src/common/data/copy.json
+++ b/src/common/data/copy.json
@@ -235,7 +235,7 @@
"Testimony Group 03",
"Other"
],
- "info": "Showing %n events that occurred between",
+ "info": "Showing %n events that occurred between",
"default_categories_label": ""
},
"cardstack": {
diff --git a/src/common/utilities.js b/src/common/utilities.js
index 9a4e469..50aad7b 100644
--- a/src/common/utilities.js
+++ b/src/common/utilities.js
@@ -344,7 +344,7 @@ export function calcClusterOpacity(pointCount, totalPoints) {
/* Clusters represent multiple events within a specific radius. The darker the cluster,
the larger the number of underlying events. We use a multiplication factor (50) here as well
to ensure that the larger clusters have an appropriately darker shading. */
- return Math.min(0.85, 0.08 + (pointCount / totalPoints) * 50);
+ return Math.min(0.85, 0.5 + (pointCount / totalPoints) * 50);
}
export function calcClusterSize(pointCount, totalPoints) {
@@ -352,8 +352,8 @@ export function calcClusterSize(pointCount, totalPoints) {
Just like with opacity, we use a multiplication factor to ensure that clusters with higher point
counts appear larger. */
//TO-DO: Convert maxSize into a config var
- const maxSize = totalPoints > 60 ? 60 : 35;
- return Math.min(maxSize, 10 + (pointCount / totalPoints) * 100);
+ const maxSize = totalPoints > 60 ? 90 : 35;
+ return Math.min(maxSize, 15 + (pointCount / totalPoints) * 120);
}
export function calculateTotalClusterPoints(clusters) {
diff --git a/src/components/space/carto/atoms/Clusters.js b/src/components/space/carto/atoms/Clusters.js
index f652e64..d04884c 100644
--- a/src/components/space/carto/atoms/Clusters.js
+++ b/src/components/space/carto/atoms/Clusters.js
@@ -81,7 +81,7 @@ function Cluster({
}}
className="cluster-event-marker"
/>
- {hovered ? renderHover(cluster) : null}
+ {renderHover(cluster)}
);
@@ -111,8 +111,13 @@ function ClusterEvents({
<>
{d0} - {d1}