From a7d096cae4cd5788227f95be3dfb3f159b59ad7b Mon Sep 17 00:00:00 2001 From: Jay Hodgson Date: Fri, 13 Oct 2023 13:04:30 -0700 Subject: [PATCH] fix types --- .../src/configurations/crc-researcher/routesConfig.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/portals/src/configurations/crc-researcher/routesConfig.ts b/apps/portals/src/configurations/crc-researcher/routesConfig.ts index 8a310e19c3..edde3be3b8 100644 --- a/apps/portals/src/configurations/crc-researcher/routesConfig.ts +++ b/apps/portals/src/configurations/crc-researcher/routesConfig.ts @@ -27,16 +27,16 @@ const routes: GenericRoute[] = [ name: 'SynapsePlot', isOutsideContainer: false, props: { - widgetparamsMapped: { + synapsePlotWidgetParams: { query: 'SELECT "date", CONTACT as "New accounts created", survey_1 as "Completed Survey 1", survey_2 as "Completed Survey 2", survey_3 as "Completed Survey 3", survey_4 as "Completed Survey 4" FROM syn22314856', title: 'New Participants Per Survey Per Day', xtitle: 'Date', ytitle: 'Count', type: 'scatter', - horizontal: 'true', + horizontal: true, // xaxistype:, - showlegend: 'true', + showlegend: true, }, }, },