Skip to content

Commit 69025ee

Browse files
committed
-feat: update instructions modal with getting started and other views
-feat: highlight SV when clicked on in clinical panel
1 parent 8deace7 commit 69025ee

12 files changed

+578
-62
lines changed

src/App.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1491,7 +1491,7 @@ function App(props: RouteComponentProps) {
14911491
</svg>
14921492
</button>
14931493
<div id="hidden-gosling" style={{ visibility: 'collapse', position: 'fixed' }} />
1494-
<div className="instructions-modals-container">
1494+
<div className={`instructions-modals-container ${isMinimalMode ? 'minimal' : 'vanilla'}`}>
14951495
{isMinimalMode ? (
14961496
<>
14971497
<GenomeViewModal />
@@ -1510,6 +1510,7 @@ function App(props: RouteComponentProps) {
15101510
isClinicalPanelOpen={isClinicalPanelOpen}
15111511
setIsClinicalPanelOpen={setIsClinicalPanelOpen}
15121512
setInteractiveMode={setInteractiveMode}
1513+
setSelectedSvId={setSelectedSvId}
15131514
/>
15141515
)}
15151516
</div>

0 commit comments

Comments
 (0)