Skip to content

Commit

Permalink
Merge pull request #171 from bento-platform/releases/v1.4.0
Browse files Browse the repository at this point in the history
Releases/v1.4.0
  • Loading branch information
ppillot authored Sep 10, 2022
2 parents ac04db2 + edec487 commit 957cb76
Show file tree
Hide file tree
Showing 12 changed files with 446 additions and 484 deletions.
197 changes: 168 additions & 29 deletions package-lock.json

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

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"antd": "^3.26.19",
"cross-fetch": "^3.0.6",
"cross-fetch": "^3.1.5",
"file-saver": "^2.0.5",
"igv": "^2.10.1",
"iso8601-duration": "^1.2.0",
Expand Down Expand Up @@ -40,6 +40,7 @@
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"prettier": "^2.7.1",
"style-loader": "^2.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^4.1.0",
Expand Down Expand Up @@ -67,6 +68,7 @@
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": false
"singleQuote": false,
"printWidth": 120
}
}
4 changes: 3 additions & 1 deletion src/components/ServiceList.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ const serviceColumns = (isOwner) => [
{
title: "URL",
dataIndex: "serviceInfo.url",
render: (url) => <a href={`${url}/service-info`}>{`${url}/service-info`}</a>,
// url is undefined when service-registry does not receive replies from
// the container.
render: (url) => url ? <a href={`${url}/service-info`}>{`${url}/service-info`}</a> : "N/A",
},
{
title: "Status",
Expand Down
Loading

0 comments on commit 957cb76

Please sign in to comment.