Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed: visible 'To background' button in review mode #6363

Merged
merged 3 commits into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- The problem with manifest file in tasks restored from backup (<https://github.com/opencv/cvat/issues/5971>)
- The problem with task mode in a task restored from backup (<https://github.com/opencv/cvat/issues/5668>)
- Visible 'To background' button in review mode (<https://github.com/opencv/cvat/pull/6363>)
- \[API\] Performance of several API endpoints (<https://github.com/opencv/cvat/pull/6340>)
- \[API\] Invalid schema for the owner field in several endpoints (<https://github.com/opencv/cvat/pull/6343>)

Expand Down
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.52.0",
"version": "1.52.1",
"description": "CVAT single-page application",
"main": "src/index.tsx",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function CreateURLItem(props: ItemProps): JSX.Element {
<Menu.Item {...rest}>
<Button
className='cvat-object-item-menu-create-url'
disabled={serverID === undefined}
disabled={!Number.isInteger(serverID)}
type='link'
icon={<LinkOutlined />}
onClick={createURL}
Expand Down Expand Up @@ -283,7 +283,7 @@ export default function ItemMenu(props: Props): JSX.Element {
{is2D && !readonly && shapeType === ShapeType.CUBOID && (
<ResetPerspectiveItem key={MenuKeys.RESET_PERSPECIVE} toolProps={props} />
)}
{is2D && objectType !== ObjectType.TAG && (
{is2D && !readonly && objectType !== ObjectType.TAG && (
<ToBackgroundItem key={MenuKeys.TO_BACKGROUND} toolProps={props} />
)}
{is2D && !readonly && objectType !== ObjectType.TAG && (
Expand Down