Fixed error message (#2087)

main
Boris Sekachev 6 years ago committed by GitHub
parent 55073fb16e
commit ebeef1d640
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

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

@ -93,7 +93,7 @@ class AdvancedConfigurationForm extends React.PureComponent<Props> {
delete filteredValues.frameStep;
if (values.overlapSize && +values.segmentSize <= +values.overlapSize) {
reject(new Error('Overlap size must be more than segment size'));
reject(new Error('Segment size must be more than overlap size'));
}
if (typeof (values.startFrame) !== 'undefined' && typeof (values.stopFrame) !== 'undefined'

Loading…
Cancel
Save