Skip to content

Commit

Permalink
Merge pull request #95 from LegumeFederation/bugfix/trackdup
Browse files Browse the repository at this point in the history
Bugfix/trackdup
  • Loading branch information
awilkey authored May 11, 2018
2 parents 020dc19 + fe07af4 commit 7814306
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ BE CONSIDERED.
Display and compare biological maps (genetic, physical, cytogenetic, genomic;
linkage groups, chromosomes, scaffolds).

```
Due to workflow, the master branch reflects the state of the most current tag.
If you find any issues, please check out the develop branch and see if the error
persists before opening an issue.
```

## Setup

Prerequisite: `npm` is required so install [NodeJs](https://nodejs.org) if you
Expand Down
2 changes: 1 addition & 1 deletion src/ui/menus/FeatureMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export let _applyButton = {
return m('button', {
onclick: function () {
vnode.attrs.config.filters = vnode.attrs.newData.map(data => {return data.name;});
vnode.attrs.model.tracks[vnode.attrs.order] = vnode.attrs.config;
vnode.attrs.model.tracks[vnode.attrs.order] = JSON.parse(JSON.stringify(vnode.attrs.config));
PubSub.publish(featureUpdate, {mapIndex: vnode.attrs.bioMapIndex});
m.redraw();
closeModal();
Expand Down

0 comments on commit 7814306

Please sign in to comment.