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: LEAP-368: Don't add visibility to undo history monorepo #5187

Closed
Closed
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion label_studio/frontend/dist/lsf/js/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion label_studio/frontend/dist/lsf/js/main.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions label_studio/frontend/dist/lsf/version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"message": "fix: OPTIC-341: Incorrect icon width causing layout issues with TabPanels in monorepo",
"commit": "2f5b6e1f3aac6aacf23b66ac64f1d6a8f34d4036",
"branch": "master",
"date": "2023-12-08T16:36:04Z"
"message": "fix: LEAP-368: Don't add visibility to undo history",
"commit": "dfe1d775aec59c161147f09b823a9fe8b4ebf70e",
"branch": "fb-leap-368/undo-hidden",
"date": "2023-12-13T10:11:28Z"
}
3 changes: 1 addition & 2 deletions web/libs/editor/src/mixins/Regions.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ const RegionsMixin = types

score: types.maybeNull(types.number),

hidden: types.optional(types.boolean, false),

filtered: types.optional(types.boolean, false),

parentID: types.optional(types.string, ''),
Expand All @@ -36,6 +34,7 @@ const RegionsMixin = types
.volatile(() => ({
// selected: false,
_highlighted: false,
hidden: false,
isDrawing: false,
perRegionFocusRequest: null,
shapeRef: null,
Expand Down