Skip to content

Commit

Permalink
RS-314: fix infinite requests for token list (#67)
Browse files Browse the repository at this point in the history
* fix to infinite request for token list

* update CHANGELOG
  • Loading branch information
atimin authored Jun 9, 2024
1 parent de794e0 commit d862225
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed:

- RS-314: fix infinite requests for token list, [PR-67](https://github.com/reductstore/web-console/pull/67)

## [1.6.0] - 2024-05-31

### Added:
Expand Down Expand Up @@ -37,7 +41,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added:

- RS-11: Mark provisioned resources and disable its control components, [PR-59](https://github.com/reductstore/web-console/pull/59)
- RS-11: Mark provisioned resources and disable its control
components, [PR-59](https://github.com/reductstore/web-console/pull/59)

## [1.3.0] - 2023-08-17

Expand All @@ -62,7 +67,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added:

- Hiding admin control elements for token without full access, [PR-49](https://github.com/reductstore/web-console/pull/49)
- Hiding admin control elements for token without full
access, [PR-49](https://github.com/reductstore/web-console/pull/49)
- Update data each 5 seconds automatically, [PR-50](https://github.com/reductstore/web-console/pull/50)

## [1.1.1] - 2022-12-18
Expand Down
2 changes: 1 addition & 1 deletion src/Views/SecurityPanel/TokenList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function TokenList(props: Readonly<Props>) {
.getTokenList()
.then((tokens) => setTokens(tokens))
.catch((err) => setError(err.message));
});
}, []);

const columns = [
{
Expand Down

0 comments on commit d862225

Please sign in to comment.