Skip to content

Commit 911f939

Browse files
authored
Merge pull request #92 from PDCMFinder/dev
Update main to use new Details URLs
2 parents 834e23c + 9506ca4 commit 911f939

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

k8-deploy/nodeport_deploy/dev/ingress-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ spec:
1515
paths:
1616
- path: /
1717
backend:
18-
serviceName: pdcm-web-ui-dev-ingress-service
18+
serviceName: pdcm-web-ui-dev-service
1919
servicePort: 80

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"react": "^17.0.2",
2828
"react-bootstrap": "2.2.2",
2929
"react-bootstrap-drawer": "^1.0.0",
30-
"react-bootstrap-typeahead": "6.0.0-alpha.11",
30+
"react-bootstrap-typeahead": "6.0.0-alpha.12",
3131
"react-cookie-consent": "^6.4.1",
3232
"react-csv": "^2.2.1",
3333
"react-dom": "^17.0.2",

src/Routes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const routes = [
99
{ path: "/data", name: "Data" },
1010
{ path: "/data/search", name: "Search" },
1111
{
12-
path: "/data/:providerId/:modelId/",
12+
path: "/data/models/:providerId/:modelId/",
1313
name: "Details",
1414
},
1515
{

src/components/search/SearchResultCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export const SearchResultCard: React.FC<SearchResult> = ({
9696
<Card.Body className="m-2">
9797
<Row>
9898
<Col xs={12} sm={12} md={6} lg={4}>
99-
<Link to={`/data/${sourceId}/${pdcmId}`}>
99+
<Link to={`/data/models/${sourceId}/${pdcmId}`}>
100100
<h4 className="fw-light">
101101
{sourceId} / {pdcmId}
102102
</h4>

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14275,10 +14275,10 @@ react-bootstrap-drawer@^1.0.0:
1427514275
resolved "https://registry.yarnpkg.com/react-bootstrap-drawer/-/react-bootstrap-drawer-1.0.0.tgz#32315c51a88e49b06c601c6f622a9d2230f8d1db"
1427614276
integrity sha512-H6YMnENP+FNTXajQKoPDkYE8mNgJQk2Es86c4ZZzdqTwjeRkQSwstItqa4OtFblV6gFAw2uY3T55E0MdRDciDg==
1427714277

14278-
react-bootstrap-typeahead@6.0.0-alpha.9:
14279-
version "6.0.0-alpha.9"
14280-
resolved "https://registry.yarnpkg.com/react-bootstrap-typeahead/-/react-bootstrap-typeahead-6.0.0-alpha.9.tgz#257955d1372fc2e1138254d19b618fd6761c3ef6"
14281-
integrity sha512-7/fYZeon84423Y3qKx+YrwEyG427zJ3iApGSQeBNCXovdKowVDf5LdEK/KZ1UPAWsKeVpRTOEr8qLtGYUvL7OQ==
14278+
react-bootstrap-typeahead@6.0.0-alpha.12:
14279+
version "6.0.0-alpha.12"
14280+
resolved "https://registry.yarnpkg.com/react-bootstrap-typeahead/-/react-bootstrap-typeahead-6.0.0-alpha.12.tgz#645349a82f55b1a2f718ee9a88eeb2a136cbedc7"
14281+
integrity sha512-8ad+tIqlJaSCChj2ZhQxMerPNqT7M/wI7w/OcPLyuBNAyYSxzcH9CaAZkFM1gzvsKhwc8txQh0g85sFusNe9sg==
1428214282
dependencies:
1428314283
"@babel/runtime" "^7.14.6"
1428414284
"@popperjs/core" "^2.10.2"

0 commit comments

Comments
 (0)