From fc5d16a7b5cd7caaa1887a0854e103df6c385594 Mon Sep 17 00:00:00 2001 From: Ganesan Chandran Date: Thu, 25 Jul 2024 12:52:59 +0530 Subject: [PATCH] fix: bug fix (#25) --- CHANGELOG.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/fetch-client-ui/components/MainUI/index.tsx | 1 + 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1efd89a..ede6f81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to the "Fetch Client" extension will be documented in this file. +## v1.5.2 - July, 2024 +### 🐛 Bug Fixes +- New request loadind fix + +### Requirements +- Minimum required version of VSCode is v1.75.0 +- Minimum Node version is 18.20.3 + ## v1.5.1 - July, 2024 ### 🐛 Bug Fixes - Fix the db file name diff --git a/package-lock.json b/package-lock.json index eef895b..9ca02d9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "fetch-client", - "version": "1.5.0", + "version": "1.5.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "fetch-client", - "version": "1.5.0", + "version": "1.5.2", "license": "MIT", "dependencies": { "aws4": "^1.11.0", diff --git a/package.json b/package.json index 389538d..d236fb5 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "fetch-client", "displayName": "Fetch Client", "description": "Rest API Client for VS Code which is used to test your API's within VS Code.", - "version": "1.5.1", + "version": "1.5.2", "publisher": "GanesanChandran", "author": { "name": "Ganesan Chandran " diff --git a/src/fetch-client-ui/components/MainUI/index.tsx b/src/fetch-client-ui/components/MainUI/index.tsx index 35b2241..ee3423b 100644 --- a/src/fetch-client-ui/components/MainUI/index.tsx +++ b/src/fetch-client-ui/components/MainUI/index.tsx @@ -115,6 +115,7 @@ const MainUI = () => { dispatch(Actions.SetRequestBinaryDataAction(event.data.fileData)); } else if (event.data && event.data.type === responseTypes.getAllVariableResponse) { dispatch(VariableActions.SetReqAllVariableAction(event.data.variable as IVariable[])); + setLoadingApp(false); } else if (event.data && event.data.type === responseTypes.getRunItemDataResponse) { const reqData = event.data.reqData as IRequestModel; dispatch(Actions.SetRequestAction(reqData));