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 e0d8a9e050 [#10286] web-v2(UI): update associated table size (#10287)
e0d8a9e050 is described below
commit e0d8a9e0501c80fc9d6df74e60ac07264472c250
Author: Qian Xia <[email protected]>
AuthorDate: Mon Mar 9 11:41:16 2026 +0800
[#10286] web-v2(UI): update associated table size (#10287)
### What changes were proposed in this pull request?
update associated table size
<img width="3538" height="1862" alt="image"
src="https://github.com/user-attachments/assets/f7995d83-4f44-4895-a371-0a115b24b756"
/>
### Why are the changes needed?
N/A
Fix: #10286
### Does this PR introduce _any_ user-facing change?
N/A
### How was this patch tested?
manually
Verified the associated table renders correctly with reduced row height
in the `Catalog Details` page
---
web-v2/web/src/components/AssociatedTable.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/web-v2/web/src/components/AssociatedTable.js
b/web-v2/web/src/components/AssociatedTable.js
index ebb997edca..afdbf57762 100644
--- a/web-v2/web/src/components/AssociatedTable.js
+++ b/web-v2/web/src/components/AssociatedTable.js
@@ -122,6 +122,7 @@ export default function AssociatedTable({ ...props }) {
return (
<Spin spinning={store.rolesForObjectLoading}>
<Table
+ size='small'
dataSource={tableData}
columns={resizableColumns}
components={components}