Skip to content

Commit

Permalink
fix: bug fix (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganesan-Chandran authored Jul 25, 2024
1 parent 0587286 commit fc5d16a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://ganesan-chandran.github.io/>"
Expand Down
1 change: 1 addition & 0 deletions src/fetch-client-ui/components/MainUI/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit fc5d16a

Please sign in to comment.