Fixed reset password link unavailable (#3140)

* Fixed action call order

* Added CHANGELOG, incresed npm version
main
Dmitry Kalinin 5 years ago committed by GitHub
parent b9f405804b
commit f32f5f4bee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Export of instance masks with holes (<https://github.com/openvinotoolkit/cvat/pull/3044>)
- Changing a label on canvas does not work when 'Show object details' enabled (<https://github.com/openvinotoolkit/cvat/pull/3084>)
- Make sure frame unzip web worker correctly terminates after unzipping all images in a requested chunk (<https://github.com/openvinotoolkit/cvat/pull/3096>)
- Reset password link was unavailable before login (<https://github.com/openvinotoolkit/cvat/pull/3140>)
### Security

@ -1,6 +1,6 @@
{
"name": "cvat-ui",
"version": "1.19.0",
"version": "1.19.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -1,6 +1,6 @@
{
"name": "cvat-ui",
"version": "1.19.0",
"version": "1.19.1",
"description": "CVAT single-page application",
"main": "src/index.tsx",
"scripts": {

@ -129,14 +129,14 @@ class CVATApplication extends React.PureComponent<CVATAppProps & RouteComponentP
return;
}
if (user == null || !user.isVerified) {
return;
}
if (!authActionsInitialized && !authActionsFetching) {
loadAuthActions();
}
if (user == null || !user.isVerified) {
return;
}
if (!formatsInitialized && !formatsFetching) {
loadFormats();
}

Loading…
Cancel
Save