From dcf40afb712cdc73215d05dec95ae9c22e823af4 Mon Sep 17 00:00:00 2001 From: Brent Hagen Date: Thu, 16 May 2024 16:02:41 -0400 Subject: [PATCH] feat(app): create well selection component creates ODD well selection component for use in quick transfer. implements basic source and destination quick transfer well selection. closes PLAT-172, PLAT-175 --- app/src/organisms/WellSelection/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/organisms/WellSelection/index.tsx b/app/src/organisms/WellSelection/index.tsx index fd7013d0725..232af5eb8dd 100644 --- a/app/src/organisms/WellSelection/index.tsx +++ b/app/src/organisms/WellSelection/index.tsx @@ -132,9 +132,11 @@ export function WellSelection(props: WellSelectionProps): JSX.Element { }) Object.keys(allSelectedWells).forEach(wellName => { wellFill[wellName] = COLORS.blue50 + wellStroke[wellName] = COLORS.transparent }) Object.keys(highlightedWells).forEach(wellName => { wellFill[wellName] = COLORS.blue50 + wellStroke[wellName] = COLORS.transparent }) return ( @@ -145,7 +147,6 @@ export function WellSelection(props: WellSelectionProps): JSX.Element {