Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/maven/api/com.puppycrawl.tools-ch…
Browse files Browse the repository at this point in the history
…eckstyle-10.15.0
  • Loading branch information
MikeEdgar authored Apr 7, 2024
2 parents 6fda896 + 17a215d commit 3938544
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
milestone-next: ${{steps.metadata.outputs.next-version}}

- name: Image Update
uses: renovatebot/[email protected].6
uses: renovatebot/[email protected].7
with:
configurationFile: .github/gitops-config.json
token: ${{ secrets.RELEASE_TOKEN }}
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export function ConsumerGroupsTable({
dataLabel={t("ConsumerGroupsTable.consumer_group_name")}
>
<Link
href={`/kafka/${kafkaId}/consumer-groups/${row.id === "" ? "+" : row.id}`}
href={`/kafka/${kafkaId}/consumer-groups/${row.id === "" ? "+" : encodeURIComponent(row.id)}`}
>
{row.id === "" ? (
<i>{t("ConsumerGroupsTable.empty_name")}</i>
Expand Down
16 changes: 8 additions & 8 deletions ui/package-lock.json

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

4 changes: 2 additions & 2 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"@tanstack/react-virtual": "^3.2.0",
"@types/lodash.groupby": "^4.6.9",
"@types/node": "20.11.30",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.24",
"@types/react-highlight-words": "^0.16.7",
"classnames": "^2.5.1",
"convert": "^5.0.0",
Expand Down

0 comments on commit 3938544

Please sign in to comment.