This is an automated email from the ASF dual-hosted git repository.
yuqi4733 pushed a commit to branch branch-0.8
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-0.8 by this push:
new 0de6469fd8 [#6478] web(ui): fix uri title of version detail (#6482)
0de6469fd8 is described below
commit 0de6469fd8af64611fcef9e2507c7510f6b16f9e
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Feb 19 17:38:08 2025 +0800
[#6478] web(ui): fix uri title of version detail (#6482)
<!--
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]>
---
web/web/src/components/DetailsDrawer.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/web/src/components/DetailsDrawer.js
b/web/web/src/components/DetailsDrawer.js
index 740c7ae15e..021f248250 100644
--- a/web/web/src/components/DetailsDrawer.js
+++ b/web/web/src/components/DetailsDrawer.js
@@ -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>