Skip to content

Commit

Permalink
Merge pull request #145 from datavisyn/release_5.0.3
Browse files Browse the repository at this point in the history
Release 5.0.3
  • Loading branch information
sgratzl authored Dec 3, 2018
2 parents 5545313 + 7b5a0cc commit 6f3d4ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "tdp_core",
"description": "Target discovery platform for exploring rankings of genes, disease models, and other entities.",
"homepage": "https://phovea.caleydo.org",
"version": "5.0.2",
"version": "5.0.3",
"author": {
"name": "datavisyn",
"email": "contact@caleydo.org",
Expand Down
2 changes: 1 addition & 1 deletion src/lineup/internal/column.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function addLazyColumn(colDesc: any, data: Promise<IScoreRow<any>[]>, pro
const accessor = createAccessor(colDesc);

// generate a unique column
(<any>colDesc).column = `dC${colDesc.label.replace(/\s+/,'')}`;
(<any>colDesc).column = colDesc.scoreID || `dC${colDesc.label.replace(/\s+/,'')}`;

provider.pushDesc(colDesc);
//mark as lazy loaded
Expand Down

0 comments on commit 6f3d4ec

Please sign in to comment.