-
Notifications
You must be signed in to change notification settings - Fork 2.8k
feat: BROS-86: Task Summary follow-ups #7782
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
base: develop
Are you sure you want to change the base?
Conversation
Improve existing labeling types: - move choice chips to a separate component and reuse it in Choices - support TextArea with multiple texts - fix per_region Number Support new types of labeling: - DateTime, just displaying the value - Taxonomy, using the same chip component, aliases are not respected yet - Ranker, display buckets and indices in their order, so it's easy to compare
✅ Deploy Preview for label-studio-docs-new-theme ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for heartex-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for label-studio-storybook ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
If current user should not see agreement, it won't be available anyway.
✅ Deploy Preview for label-studio-playground ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
@@ -71,7 +71,7 @@ export const LabelingSummary = ({ annotations: all, controls, onSelect }: Props) | |||
const annotation = row.original; | |||
|
|||
return ( | |||
<div className="flex gap-tight items-center cursor-pointer" onClick={() => onSelect(annotation)}> | |||
<button type="button" className="flex gap-tight items-center cursor-pointer" onClick={() => onSelect(annotation)}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️
Very simple html tags for them
Improve existing labeling types:
Choices
TextArea
with multiple textsNumber
Support new types of labeling:
DateTime
, just displaying the valueTaxonomy
, using the same chip component, aliases are not respected yetRanker
, display buckets and indices in their order, so it's easy to compareSupport data types in a simple shape:
Image
,Audio
,Video
as simple html tagsList
,Paragraphs
,Table
andTimeSeries
as simple JSONsText
,HyperText
as a text contentPdf
as URLRemove access to unavailable setting. If current user should not see agreement, it won't be available anyway.
Fix types a little.