Skip to content

Commit

Permalink
Fix messaging for data processing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ogibson committed Feb 16, 2024
1 parent 31e55a0 commit f527aff
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/pages/experiments/[experimentId]/data-processing/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -695,10 +695,15 @@ const DataProcessingPage = ({ experimentId, experimentData }) => {
Your navigation within Cellenics will be restricted during this time.
Do you want to start?
</p>
<Alert
message='Note that you will lose all of your annotated cell sets.'
type='warning'
/>
{
!(changedQCFilters.size === 1 && changedQCFilters.has('embeddingSettings'))
&& (
<Alert
message='Note that you will lose your previous Louvain or Leiden clusters.'
type='warning'
/>
)
}
</Modal>
)
)}
Expand Down

0 comments on commit f527aff

Please sign in to comment.