Skip to content

Commit

Permalink
- fixed shifting columns in csv file
Browse files Browse the repository at this point in the history
  • Loading branch information
boriskovar-m2ms committed Feb 18, 2021
1 parent d46c222 commit 98d0be7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions js/components/datasets/selectedCompoundsList.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,8 @@ export const SelectedCompoundList = memo(({ height }) => {

if (line.length > 0 && props.length > 0) {
line += ',';
} else if (line.length === 0 && maxIdsCount > 0) {
line += ',';
}

let value = '';
Expand Down

0 comments on commit 98d0be7

Please sign in to comment.