From 2c62cf887155746c00dd441665023c1d202ec097 Mon Sep 17 00:00:00 2001 From: Joe Tretter Date: Wed, 29 Apr 2020 23:05:27 -0500 Subject: [PATCH] just add the selected symbol to the filter context --- client/js/masterFilter.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/js/masterFilter.js b/client/js/masterFilter.js index 8782100..b330180 100644 --- a/client/js/masterFilter.js +++ b/client/js/masterFilter.js @@ -41,7 +41,9 @@ let createMasterFilterFrame=()=>{ Object.defineProperty(me,"selectedTime",{ get:_=>{ return (_filterContext.selectedTime);} }) - + Object.defineProperty(me,"selectedSymbol",{ + get:_=>{ return (_filterContext.theSymbol);} + }) me.beforeShowDay=(theDate)=>{ let isoDate=theDate.toISOString().substr(0,10); //console.log("BeforeShow",isoDate,theDate);