Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion browser-extensions/common/js/lib/challenges_ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ function createVoronoiMapPrototype() {
item_text.setAttribute("font-size", zoomScaleOptions.eventNameTextSize+"px")
item_text.setAttribute("font-weight", "bold")
item_text.setAttribute("dominant-baseline", "hanging") // Hang the text below
item_text.innerText = filtered_points[index].name
item_text.textContent = filtered_points[index].name
}

// Create a shape to represent the voronoi area associated with this parkrun event
Expand Down
Loading