Skip to content

Commit

Permalink
Fixing issue with multiple added variants (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Jan 31, 2022
1 parent 68eb597 commit 5edf707
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions HISTORY.rst
Expand Up @@ -38,6 +38,7 @@ End-User Summary
- Improving performance of project overview (#303)
- Improving performance of case listing (#304)
- Adding shortcut buttons to phenotype annotation (#289)
- Fixing issue with multiple added variants (#283)

Full Change List
================
Expand Down Expand Up @@ -77,6 +78,7 @@ Full Change List
- Improving performance of project overview (#303)
- Improving performance of case listing (#304)
- Adding shortcut buttons to phenotype annotation (#289)
- Fixing issue with multiple added variants (#283)

-------
v0.23.9
Expand Down
5 changes: 3 additions & 2 deletions varfish/vueapp/src/store/modules/clinvarExport.js
Expand Up @@ -293,8 +293,9 @@ const actions = {

// Create appropriate submissions with API, copy over individuals and remove local submissions and submission
// individuals.
for (let i = 0; i < state.currentSubmissionSet.submissions.length; i++) {
await _wizardSaveSubmission({ state, commit }, apiSet, i, state.currentSubmissionSet.submissions[i])
const submissionUuids = state.currentSubmissionSet.submissions.slice()
for (let i = 0; i < submissionUuids.length; i++) {
await _wizardSaveSubmission({ state, commit }, apiSet, i, submissionUuids[i])
}
// Remove submissions from old model data that are not present in the current submission set any more.
if (submissionSetExists) {
Expand Down

0 comments on commit 5edf707

Please sign in to comment.