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

Extra sliders on the GT management pages #9158

Open
2 tasks done
zhiltsov-max opened this issue Feb 28, 2025 · 2 comments · May be fixed by #9168
Open
2 tasks done

Extra sliders on the GT management pages #9158

zhiltsov-max opened this issue Feb 28, 2025 · 2 comments · May be fixed by #9168
Assignees
Labels
bug Something isn't working good first issue Good for newcomers ui/ux

Comments

@zhiltsov-max
Copy link
Contributor

zhiltsov-max commented Feb 28, 2025

Actions before raising this issue

  • I searched the existing issues and did not find anything similar.
  • I read/searched the docs

Steps to Reproduce

random_200.zip

from pathlib import Path
from cvat_sdk import make_client, models

with make_client("http://localhost", port=8080, credentials=("user", "password")) as client:
    data_dir = Path("~/Downloads/random_200").expanduser()
    task = client.tasks.create_from_data(
        spec=models.TaskWriteRequest(
            name="task with gt - images with frame filter",
            labels=[{"name": "cat"}, {"name": "dog"}],
            segment_size=10,
        ),
        resources=[data_dir / f"image_{i}.png" for i in range(200)],
        data_params=dict(
            image_quality=90,
            sorting_method="natural",
            chunk_size=5,
            start_frame=3,
            stop_frame=197,
            frame_step=2,
            validation_params={
                "mode": "gt",
                "frame_selection_method": "random_uniform",
                "frame_count": 20,
            },
            use_cache=True,
        ),
    )
  1. Create a task using the script and data above
  2. Go to the Quality control page
  3. Find extra sliders on the management (horizontal) and on the settings (vertical) tabs

Image
Image

Expected Behavior

No extra sliders are on the page.

Possible Solution

No response

Context

No response

Environment

@zhiltsov-max zhiltsov-max added bug Something isn't working ui/ux good first issue Good for newcomers labels Feb 28, 2025
@RavinduWeerakoon
Copy link
Contributor

I believe this issue can be resolved by adjusting the overflow properties in some classes. I'd love to take this on—could you please assign it to me?

Image

@klakhov
Copy link
Contributor

klakhov commented Mar 3, 2025

It seems the problem appeared after merge of #8953.
This style should be completely removed to fix the issue. In #9068 I refactored styles so we dont need to use calc for height.

Also it seems we have a problem with styles on consensus management page

@RavinduWeerakoon RavinduWeerakoon linked a pull request Mar 4, 2025 that will close this issue
6 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers ui/ux
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants