Skip to content

Commit

Permalink
Merge 55bc81d into c3b8b5e
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Jan 26, 2022
2 parents c3b8b5e + 55bc81d commit 2c16916
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ End-User Summary
**This is a breaking change, new data and CLI must be used!**
- Added feature to select multiple rows in results to create same annotation (#259)
- Added parameter to Docker entrypoint file to accept number of gunicorn workers
- Fixing issue with multiple added variants (#283)

Full Change List
================
Expand Down Expand Up @@ -69,6 +70,7 @@ Full Change List
- Extending columns of ``Hgnc`` to upstream update.
- Added feature to select multiple rows in results to create same annotation (#259)
- Added parameter to Docker entrypoint file to accept number of gunicorn workers
- 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
Original file line number Diff line number Diff line change
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 2c16916

Please sign in to comment.