add className for elements

main
Dmitriy Oparin 5 years ago
parent 29e25abf19
commit 70809f045b

@ -1,6 +1,6 @@
{ {
"name": "cvat-ui", "name": "cvat-ui",
"version": "1.10.8", "version": "1.10.9",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

@ -1,6 +1,6 @@
{ {
"name": "cvat-ui", "name": "cvat-ui",
"version": "1.10.8", "version": "1.10.9",
"description": "CVAT single-page application", "description": "CVAT single-page application",
"main": "src/index.tsx", "main": "src/index.tsx",
"scripts": { "scripts": {

@ -245,11 +245,12 @@ function TagAnnotationSidebar(props: StateToProps & DispatchToProps): JSX.Elemen
</Checkbox> </Checkbox>
</Col> </Col>
</Row> </Row>
<Row type='flex' justify='start'> <Row type='flex' justify='start' className='cvat-tag-anntation-sidebar-frame-tags'>
<Col> <Col>
<Text strong>Frame tags:&nbsp;</Text> <Text strong>Frame tags:&nbsp;</Text>
{frameTags.map((tag: any) => ( {frameTags.map((tag: any) => (
<Tag <Tag
className={'cvat-tag-anntation-sidebar-frame-tag-label'}
color={tag.label.color} color={tag.label.color}
onClose={() => { onClose={() => {
onRemoveState(tag); onRemoveState(tag);

Loading…
Cancel
Save