This is an automated email from the ASF dual-hosted git repository.
nicholasjiang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-webui.git
The following commit(s) were added to refs/heads/main by this push:
new c29150f7 [Improvement] Align field names displayed on the Manifest
page with the backend interface (#294)
c29150f7 is described below
commit c29150f71842926ea90ebb2360497ea6164ac442
Author: s7monk <[email protected]>
AuthorDate: Wed Jun 5 13:28:56 2024 +0800
[Improvement] Align field names displayed on the Manifest page with the
backend interface (#294)
---
paimon-web-ui/src/views/metadata/components/manifest/index.tsx | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/paimon-web-ui/src/views/metadata/components/manifest/index.tsx
b/paimon-web-ui/src/views/metadata/components/manifest/index.tsx
index e7819067..766326d7 100644
--- a/paimon-web-ui/src/views/metadata/components/manifest/index.tsx
+++ b/paimon-web-ui/src/views/metadata/components/manifest/index.tsx
@@ -41,6 +41,14 @@ export default defineComponent({
title: 'Number of Add Files',
key: 'numAddedFiles',
},
+ {
+ title: 'Number of Delete Files',
+ key: 'numDeletedFiles',
+ },
+ {
+ title: 'schemaId',
+ key: 'schemaId',
+ },
]
const onFetchData = async () => {
@@ -67,6 +75,7 @@ export default defineComponent({
<n-data-table
columns={this.columns}
data={this.manifest || []}
+ max-height="calc(100vh - 280px)"
/>
</n-spin>
</n-card>