Skip to content

Commit

Permalink
Merge pull request #983 from biomage-org/fix-clustering-warning
Browse files Browse the repository at this point in the history
Fix messaging for data processing changes
  • Loading branch information
ogibson authored Feb 16, 2024
2 parents 31e55a0 + f527aff commit 7b3c92a
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 7b3c92a

Please sign in to comment.