Skip to content

Commit 75ba19a

Browse files
authored
Merge pull request #152 from IDEA-Research/release/0.12.1
Release: v0.12.1
2 parents 9210ee5 + 0f298ae commit 75ba19a

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

deepdataspace/server/static/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
</head>
1010
<body>
1111
<div id="root"></div>
12-
<script src="/static/umi.d97b8209.js"></script>
12+
<script src="/static/umi.67c220bb.js"></script>
1313

1414
</body></html>

deepdataspace/server/static/umi.d97b8209.js renamed to deepdataspace/server/static/umi.67c220bb.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deepdataspace/server/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
</head>
1010
<body>
1111
<div id="root"></div>
12-
<script src="/static/umi.d97b8209.js"></script>
12+
<script src="/static/umi.67c220bb.js"></script>
1313

1414
</body></html>

packages/components/src/Annotator/preview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ const Preview: React.FC<PreviewProps> = (props) => {
358358
}
359359

360360
const getHighlightWords = () => {
361-
const objects = list[current].objects;
361+
const objects = objectsFilter ? objectsFilter(list[current]) : list[current].objects;
362362
return categories
363363
.filter((category) => objects.find((obj: any) => obj.categoryId === category.id))
364364
.map((category) => {

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup
44

5-
version = "0.12.0"
5+
version = "0.12.1"
66

77
description = "A tool for CV dataset labeling, visualizing and analysing"
88
with open("README.md", "r", encoding="utf8") as fp:

0 commit comments

Comments
 (0)