Skip to content

Commit

Permalink
fix: OPTIC-712: Remove warnings in the app related to injection occur… (
Browse files Browse the repository at this point in the history
#5820)

Removing warnings in console:

<img width="1863" alt="Screenshot 2024-05-03 at 9 52 27 AM"
src="https://github.com/HumanSignal/label-studio/assets/817416/a2191453-2f47-4e8d-8956-c42793a2ef3b">

Co-authored-by: Raul Martin <raul@humansignal.com>
  • Loading branch information
luarmr and Raul Martin committed May 7, 2024
1 parent b20500b commit e53be42
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions web/dist/apps/labelstudio/version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"message": "fix: OPTIC-713: Remove warnings in the console when a infinite scroll is used in datamanager",
"commit": "15b97d6c04fd777271133fccc24efb07af0ca6b5",
"date": "2024-05-03T18:32:46.000Z",
"branch": "fb-optic-713/remove-warnings"
"message": "fix: OPTIC-712: Remove warnings in the app related to injection occur before observer",
"commit": "9f1d0c707d44c452b223704aa11417b2ba3c039e",
"date": "2024-05-03T17:03:19.000Z",
"branch": "fb-optic-712/remove-warnings"
}
8 changes: 4 additions & 4 deletions web/dist/libs/datamanager/version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"message": "fix: OPTIC-713: Remove warnings in the console when a infinite scroll is used in datamanager",
"commit": "15b97d6c04fd777271133fccc24efb07af0ca6b5",
"date": "2024-05-03T18:32:46.000Z",
"branch": "fb-optic-713/remove-warnings"
"message": "fix: OPTIC-712: Remove warnings in the app related to injection occur before observer",
"commit": "9f1d0c707d44c452b223704aa11417b2ba3c039e",
"date": "2024-05-03T17:03:19.000Z",
"branch": "fb-optic-712/remove-warnings"
}
2 changes: 1 addition & 1 deletion web/dist/libs/editor/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web/dist/libs/editor/main.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions web/dist/libs/editor/version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"message": "fix: OPTIC-713: Remove warnings in the console when a infinite scroll is used in datamanager",
"commit": "15b97d6c04fd777271133fccc24efb07af0ca6b5",
"date": "2024-05-03T18:32:46.000Z",
"branch": "fb-optic-713/remove-warnings"
"message": "fix: OPTIC-712: Remove warnings in the app related to injection occur before observer",
"commit": "9f1d0c707d44c452b223704aa11417b2ba3c039e",
"date": "2024-05-03T17:03:19.000Z",
"branch": "fb-optic-712/remove-warnings"
}
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ const SelectedRegion: FC<{ region: any }> = observer(({ region }) => {
return <RegionItem region={region} mainDetails={RegionDetailsMain} metaDetails={RegionDetailsMeta} />;
});

export const Comments = observer(CommentsTab);
export const History = observer(HistoryTab);
export const Relations = observer(RelationsTab);
export const Info = observer(InfoTab);
export const Comments = CommentsTab;
export const History = HistoryTab;
export const Relations = RelationsTab;
export const Info = InfoTab;
export const Details = observer(DetailsComponent);
export const DetailsPanel = observer(DetailsPanelComponent);

0 comments on commit e53be42

Please sign in to comment.