From 694d371887ecd69c56bce459783ef228ae6e9e46 Mon Sep 17 00:00:00 2001 From: Nivedin Date: Thu, 25 May 2023 19:11:08 +0530 Subject: [PATCH] fix: type isssue --- packages/hoppscotch-common/src/components/http/TestResult.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/hoppscotch-common/src/components/http/TestResult.vue b/packages/hoppscotch-common/src/components/http/TestResult.vue index a6541e129..607904446 100644 --- a/packages/hoppscotch-common/src/components/http/TestResult.vue +++ b/packages/hoppscotch-common/src/components/http/TestResult.vue @@ -206,7 +206,9 @@ :show="showTeamEnvironmentDetailsModal" action="new" :env-vars="getAdditionVars" - :editing-team-id="workspace.type === 'team' ? workspace.teamID : null" + :editing-team-id=" + workspace.type === 'team' ? workspace.teamID : undefined + " @hide-modal="displayModalAdd(false)" />