This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new baba58c230 [#6478] web(ui): fix uri title of version detail (#6479)
baba58c230 is described below
commit baba58c230d36921832949d16afd85c47563552d
Author: Qian Xia <[email protected]>
AuthorDate: Wed Feb 19 16:32:49 2025 +0800
[#6478] web(ui): fix uri title of version detail (#6479)
### 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
---
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>