From 9dbb5c82778b741d363e28278d0726ac2e3326da Mon Sep 17 00:00:00 2001 From: Brett Edwards Date: Wed, 21 Aug 2024 08:09:45 -0700 Subject: [PATCH] standard fire center line width (#3866) Sets default fire center line width back to 3 --- web/src/features/fba/components/map/featureStylers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/features/fba/components/map/featureStylers.ts b/web/src/features/fba/components/map/featureStylers.ts index e1f68c691..84339d5b7 100644 --- a/web/src/features/fba/components/map/featureStylers.ts +++ b/web/src/features/fba/components/map/featureStylers.ts @@ -60,7 +60,7 @@ export const fireCentreLineStyler = (selectedFireCenter: FireCenter | undefined) return new Style({ stroke: new Stroke({ color: 'black', - width: isSelected ? 8 : 1 + width: isSelected ? 8 : 3 }) }) }