Skip to content

Commit

Permalink
Merge pull request #92 from KeithKelleher/master
Browse files Browse the repository at this point in the history
fix ligand activity bug
  • Loading branch information
KeithKelleher authored May 2, 2023
2 parents 8182661 + b0337a5 commit f4d9b12
Show file tree
Hide file tree
Showing 3 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
@@ -1,6 +1,6 @@
{
"name": "pharos-graphql-server",
"version": "3.16.0",
"version": "3.16.1",
"description": "",
"main": "src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/resolvers.js
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ const resolvers = {
return q.then(rows => {
if (rows) {
if (rows.length > 0) {
dataSources.associatedTargetTCRDID = rows[0].id;
dataSources.associatedTargetTCRDID = rows[0].tcrdid || rows[0].id;
}
return rows[0];
}
Expand Down
Binary file modified src/unfiltered_counts.sqlite
Binary file not shown.

0 comments on commit f4d9b12

Please sign in to comment.