File tree Expand file tree Collapse file tree 2 files changed +14
-9
lines changed
assets/js/workflow-diagram Expand file tree Collapse file tree 2 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ and this project adheres to
26
26
### Changed
27
27
28
28
### Fixed
29
+ - Hide Mini-History on new template page
30
+ [ #3531 ] ( https://github.com/OpenFn/lightning/pull/3531 )
29
31
30
32
## [ v2.14.2] - 2025-08-15
31
33
Original file line number Diff line number Diff line change @@ -590,15 +590,18 @@ export default function WorkflowDiagram(props: WorkflowDiagramProps) {
590
590
liveAction = { props . liveAction }
591
591
drawerWidth = { drawerWidth }
592
592
/>
593
- < MiniHistory
594
- collapsed = { ! runSteps . start_from }
595
- history = { someHistory }
596
- selectRunHandler = { onRunChange }
597
- onCollapseHistory = { onCollapseHistory }
598
- drawerWidth = { drawerWidth }
599
- hasSnapshotMismatch = { hasSnapshotMismatch }
600
- missingNodeCount = { missingNodeCount }
601
- />
593
+ {
594
+ props . liveAction === 'edit' ?
595
+ < MiniHistory
596
+ collapsed = { ! runSteps . start_from }
597
+ history = { someHistory }
598
+ selectRunHandler = { onRunChange }
599
+ onCollapseHistory = { onCollapseHistory }
600
+ drawerWidth = { drawerWidth }
601
+ hasSnapshotMismatch = { hasSnapshotMismatch }
602
+ missingNodeCount = { missingNodeCount }
603
+ /> : null
604
+ }
602
605
</ ReactFlowProvider >
603
606
) ;
604
607
}
You can’t perform that action at this time.
0 commit comments