Skip to content

Commit

Permalink
[#6478] web(ui): fix uri title of version detail (#6482)
Browse files Browse the repository at this point in the history
<!--
1. Title: [#<issue>] <type>(<scope>): <subject>
   Examples:
     - "[#123] feat(operator): support xxx"
     - "[#233] fix: check null before access result in xxx"
     - "[MINOR] refactor: fix typo in variable name"
     - "[MINOR] docs: fix typo in README"
     - "[#255] test: fix flaky test NameOfTheTest"
   Reference: https://www.conventionalcommits.org/en/v1.0.0/
2. If the PR is unfinished, please mark this PR as draft.
-->

### What changes were proposed in this pull request?
fix uri title of version detail

### Why are the changes needed?
N/A

Fix: #6478

### Does this PR introduce _any_ user-facing change?
N/A

### How was this patch tested?
manually

Co-authored-by: Qian Xia <[email protected]>
  • Loading branch information
github-actions[bot] and LauraXia123 authored Feb 19, 2025
1 parent 51b4ba2 commit 0de6469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/web/src/components/DetailsDrawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const DetailsDrawer = props => {
{drawerData.uri && (
<Grid item xs={12} md={6} sx={{ mb: [0, 5] }}>
<Typography variant='body2' sx={{ mb: 2 }}>
Type
URI
</Typography>
{renderFieldText({ value: drawerData.uri })}
</Grid>
Expand Down

0 comments on commit 0de6469

Please sign in to comment.