Skip to content

Commit

Permalink
Merge pull request #152 from IDEA-Research/release/0.12.1
Browse files Browse the repository at this point in the history
Release: v0.12.1
  • Loading branch information
cefeng06 committed Apr 10, 2024
2 parents 9210ee5 + 0f298ae commit 75ba19a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deepdataspace/server/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
</head>
<body>
<div id="root"></div>
<script src="/static/umi.d97b8209.js"></script>
<script src="/static/umi.67c220bb.js"></script>

</body></html>

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion deepdataspace/server/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
</head>
<body>
<div id="root"></div>
<script src="/static/umi.d97b8209.js"></script>
<script src="/static/umi.67c220bb.js"></script>

</body></html>
2 changes: 1 addition & 1 deletion packages/components/src/Annotator/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ const Preview: React.FC<PreviewProps> = (props) => {
}

const getHighlightWords = () => {
const objects = list[current].objects;
const objects = objectsFilter ? objectsFilter(list[current]) : list[current].objects;
return categories
.filter((category) => objects.find((obj: any) => obj.categoryId === category.id))
.map((category) => {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup

version = "0.12.0"
version = "0.12.1"

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

0 comments on commit 75ba19a

Please sign in to comment.