Skip to content

Commit

Permalink
Merge pull request #66 from bcgsc/release/v3.14.6
Browse files Browse the repository at this point in the history
Release/v3.14.6
  • Loading branch information
mathieulemieux authored Dec 19, 2023
2 parents 0274e6a + 36a6900 commit d161ebb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@bcgsc-pori/graphkb-api",
"main": "server.js",
"version": "3.14.5",
"version": "3.14.6",
"private": true,
"repository": {
"type": "git",
Expand Down
2 changes: 2 additions & 0 deletions src/repo/commands/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ const fetchDisplayName = async (db, modelName, content) => {
subject: recordsById[recId(content.subject)],
};
return sentenceTemplates.chooseDefaultTemplate(templateContent);
} if (model.name === 'Feature' && content.displayName) {
return content.displayName;
}
return content.name;
};
Expand Down
2 changes: 1 addition & 1 deletion test/db_integration/service_routes.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const { createEmptyDb, tearDownDb } = require('./util');
const request = async (opt) => requestPromise({ json: true, resolveWithFullResponse: true, ...opt });

const REALLY_LONG_TIME = 10000000000;
const TEST_TIMEOUT_MS = 100000;
const TEST_TIMEOUT_MS = 1000000;
jest.setTimeout(TEST_TIMEOUT_MS);

const describeWithAuth = process.env.GKB_DBS_PASS
Expand Down

0 comments on commit d161ebb

Please sign in to comment.