Skip to content

Commit

Permalink
integrate fixes from package, fix useless concat warning
Browse files Browse the repository at this point in the history
  • Loading branch information
hpratt committed Oct 13, 2020
1 parent 54bb4c5 commit fad0c10
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gbwebapp",
"version": "2.0.13",
"version": "2.0.14",
"private": true,
"dependencies": {
"bigwig-reader": "^1.3.1",
Expand All @@ -18,7 +18,7 @@
"semantic-ui-react": "^1.2.0",
"ts-bedkit": "^0.0.1",
"typescript": "^3.9.7",
"umms-gb": "^2.0.34"
"umms-gb": "^2.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
Expand Down
8 changes: 4 additions & 4 deletions src/components/search/searchbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ const SearchBox: React.FC<SearchBoxProps> = (props) => {
value.length <= 5
) {
rs = [
{ title: value + ':1-100000', description: '' + '\n' + value + ':1-100000' },
{ title: value + ':1-1000000', description: ''+ '\n' + value + ':1-1000000' },
{ title: value + ':1-100000', description: `\n${value}:1-100000` },
{ title: value + ':1-1000000', description: `\n${value}:1-1000000` },
{
title: value + ':1-10000000',
description: '' + '\n' + value + ':1-10000000',
title: `${value}:1-10000000`,
description: `\n${value}:1-10000000`,
},
];
}
Expand Down
7 changes: 4 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9303,9 +9303,10 @@ typescript@^3.9.7:
version "3.9.7"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa"

umms-gb@^2.0.34:
version "2.0.34"
resolved "https://registry.yarnpkg.com/umms-gb/-/umms-gb-2.0.34.tgz#cf7d575ceb3da8e0210c09356466cebc54cbe9f5"
umms-gb@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/umms-gb/-/umms-gb-2.1.0.tgz#eaad5f0b8478da767f7dbe770e38ce86812a47e1"
integrity sha512-OKPsQdEi7Bb2zSj/IhVIO17kN6cGZ152tLajgZVSazZWQ+PoV6k7/pJNGyoF+O+b1cELNfbw7vl12t22lmFLWQ==
dependencies:
"@types/uuid" "^8.0.0"
bigwig-reader "^1.3.1"
Expand Down

0 comments on commit fad0c10

Please sign in to comment.