Skip to content

Commit

Permalink
Bump @patternfly/react-core from 5.1.2 to 5.2.0 in /ui (#436)
Browse files Browse the repository at this point in the history
* Bump @patternfly/react-core from 5.1.2 to 5.2.0 in /ui

Bumps [@patternfly/react-core](https://github.com/patternfly/patternfly-react) from 5.1.2 to 5.2.0.
- [Release notes](https://github.com/patternfly/patternfly-react/releases)
- [Commits](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-core@5.1.2...@patternfly/react-core@5.2.0)

---
updated-dependencies:
- dependency-name: "@patternfly/react-core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Default undefined/null bootstrapServers to empty string

Signed-off-by: Michael Edgar <medgar@redhat.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Michael Edgar <medgar@redhat.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Edgar <medgar@redhat.com>
  • Loading branch information
dependabot[bot] and MikeEdgar authored Feb 12, 2024
1 parent 36e1f31 commit ce0486a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 30 deletions.
4 changes: 2 additions & 2 deletions ui/app/[locale]/ClusterConnectionDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function ClusterConnectionDetails({
{external.map((l, idx) => (
<ListItem key={idx} className={"pf-v5-u-py-sm"}>
<ClipboardCopy isReadOnly={true}>
{l.bootstrapServers}
{l.bootstrapServers ?? ""}
</ClipboardCopy>
<Text component={"small"}>
{/*Listener type: {l.type}*/}
Expand Down Expand Up @@ -82,7 +82,7 @@ export async function ClusterConnectionDetails({
{internal.map((l, idx) => (
<ListItem key={idx} className={"pf-v5-u-py-sm"}>
<ClipboardCopy isReadOnly={true}>
{l.bootstrapServers}
{l.bootstrapServers ?? ""}
</ClipboardCopy>
<Text component={"small"}>
Authentication type: {l.authType || "none"}
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@patternfly/patternfly": "^5.2.0",
"@patternfly/quickstarts": "^5.1.0",
"@patternfly/react-charts": "^7.2.0",
"@patternfly/react-core": "^5.1.2",
"@patternfly/react-core": "^5.2.0",
"@patternfly/react-icons": "^5.2.0",
"@patternfly/react-table": "^5.2.0",
"@patternfly/react-tokens": "^5.2.0",
Expand Down
34 changes: 7 additions & 27 deletions ui/pnpm-lock.yaml

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

0 comments on commit ce0486a

Please sign in to comment.