Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: OPTIC-712: Remove warnings in the app related to injection occur… #5820

Merged
merged 2 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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);
Loading