Skip to content

Commit

Permalink
Fixed error message (#2087)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsekachev authored Aug 26, 2020
1 parent 55073fb commit ebeef1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cvat-ui/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 cvat-ui/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit ebeef1d

Please sign in to comment.