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

Release/v0.25.1 #4774

Merged
merged 23 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2deee54
Fix ultralytics extract track IDs (#4720)
swheaton Aug 23, 2024
872f65a
fix TabsView getting reset to default value
imanjra Aug 27, 2024
d103621
Fix filtered modal tagging (#4723)
benjaminpkane Aug 27, 2024
9929c04
Fix Keypoint filtering (#4735)
benjaminpkane Aug 27, 2024
be42a49
docs tweak
brimoor Aug 28, 2024
475310d
feat: make YOLOv5DatasetImporter support filelist source
imyhxy Aug 28, 2024
007fc96
nomenclature
brimoor Aug 28, 2024
6a73298
Merge pull request #4743 from voxel51/docs-tweak
brimoor Aug 28, 2024
b391ca3
Merge pull request #4744 from voxel51/fix-yolov5-importer
brimoor Aug 28, 2024
48eaa46
rm unused workflows (#4746)
benjaminpkane Aug 28, 2024
dbdda14
Fix sidebar state persistence (#4745)
benjaminpkane Aug 29, 2024
aa6f9e1
use $expr for generality
brimoor Aug 30, 2024
76e4192
add group_by match_expr test
swheaton Aug 30, 2024
f8b89e8
Merge pull request #4754 from voxel51/bug/group-by-match
brimoor Aug 30, 2024
bd39e46
fix set_data clobbering old values
ritch Aug 29, 2024
36d0f05
panel data and state tests
ritch Aug 30, 2024
380ab4c
fix set_x tests
ritch Aug 30, 2024
1fdd870
Fix sample selection with map panel (#4739)
benjaminpkane Aug 30, 2024
dcb5570
adding 0.25.1 release notes
brimoor Sep 4, 2024
52cf69a
outputs may be None
brimoor Aug 22, 2024
9a4b019
adding release note
brimoor Sep 4, 2024
24550f2
Merge pull request #4770 from voxel51/cherry-pick-4715
brimoor Sep 4, 2024
5d0226e
Merge pull request #4767 from voxel51/release-notes
brimoor Sep 4, 2024
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
44 changes: 0 additions & 44 deletions .github/disabled_workflows/chromatic.yml

This file was deleted.

103 changes: 0 additions & 103 deletions .github/workflows/build-desktop.yml

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions app/packages/components/src/components/PillButton/PillButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ const PillButton = React.forwardRef<HTMLButtonElement, PillButtonProps>(
);

type PillButtonProps = {
onClick: (event: Event) => void;
id?: string;
open?: boolean;
arrow?: boolean;
highlight?: boolean;
text?: string;
icon?: JSX.Element;
arrow?: boolean;
id?: string;
onClick: (event: Event) => void;
open?: boolean;
style?: React.CSSProperties;
text?: string;
title: string;
};

Expand Down
Loading
Loading