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

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

deepdataspace/server/static/index.html

+1-1
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 deepdataspace/server/static/umi.67c220bb.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deepdataspace/server/templates/index.html

+1-1
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

+1-1
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

+1-1
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)