未验证 提交 f32f5f4b 编写于 作者: D Dmitry Kalinin 提交者: GitHub

Fixed reset password link unavailable (#3140)

* Fixed action call order

* Added CHANGELOG, incresed npm version
上级 b9f40580
......@@ -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
......
{
"name": "cvat-ui",
"version": "1.19.0",
"version": "1.19.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
{
"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();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册