From 92b0528ee0b2600836129203690df240b749cdc1 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Mon, 16 Nov 2020 17:06:06 +0300 Subject: [PATCH] fix quiteid type --- src/client/stores/CalculationStore/Effects/action.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/stores/CalculationStore/Effects/action.ts b/src/client/stores/CalculationStore/Effects/action.ts index b5c2153..66c7f4e 100644 --- a/src/client/stores/CalculationStore/Effects/action.ts +++ b/src/client/stores/CalculationStore/Effects/action.ts @@ -187,8 +187,8 @@ const actions: TAction = { .then(({ quoteid }) => { CalculationService.crmgqlquery({ query: gql` - query($quoteid: String) { - quote(quoteId: $quoteid) { + query($quoteid: Uuid!) { + quote(quoteid: $quoteid) { offerprintform evo_quotename }