Skip to content

Commit e9f1d14

Browse files
committed
SOFIE-283 | enable properties editor for invalid parts
1 parent dd64f5b commit e9f1d14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/webui/src/client/styles/rundownView.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1568,7 +1568,7 @@ svg.icon {
15681568
bottom: 0;
15691569
right: 1px;
15701570
z-index: 10;
1571-
pointer-events: all;
1571+
pointer-events: none;
15721572
background-image: repeating-linear-gradient(
15731573
45deg,
15741574
var(--invalid-reason-color-transparent) 0%,

packages/webui/src/client/ui/SegmentTimeline/SegmentContextMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export const SegmentContextMenu = withTranslation()(
139139
)}
140140
</>
141141
)}
142-
{part && !part.instance.part.invalid && timecode !== null && (
142+
{part && timecode !== null && (
143143
<>
144144
<MenuItem
145145
onClick={(e) => this.props.onSetNext(part.instance.part, e)}

0 commit comments

Comments
 (0)