fix(bandmap): the two tooltip labels the previous commit left out

Without them t() was handed undefined for a new prefix or grid, so the tooltip
would have shown an empty segment — the opposite of naming the fact.
This commit is contained in:
2026-08-28 12:17:59 +02:00
parent 3bb92f79b2
commit a156b6ad10
+7
View File
@@ -76,6 +76,13 @@ const BMP_MARKER_LABEL: Record<string, string> = {
new_pota: 'bmp.legendNewPota', new_pota: 'bmp.legendNewPota',
new_county: 'bmp.legendNewCounty', new_county: 'bmp.legendNewCounty',
worked_call: 'bmp.legendWorkedCall', worked_call: 'bmp.legendWorkedCall',
// Not on the strip — the pill is 22 px and a fourth segment turns it into a
// colour code nobody reads — but the TOOLTIP has room, and leaving them out of
// it made the two panels contradict each other: the cluster said NEW PFX about
// a spot the map called "Worked". Both were true (the entity is worked on this
// slot, the WPX prefix never has been) and neither view said so.
new_pfx: 'clg2.newPfx',
new_grid: 'clg2.newGrid',
}; };
interface Props { interface Props {