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 af2d08b6 [Improvement] Optimize the display position of option page
fields (#300)
af2d08b6 is described below
commit af2d08b663c45b0ae3b13c07f029eed4b1e9f4ed
Author: s7monk <[email protected]>
AuthorDate: Thu Jun 6 17:00:03 2024 +0800
[Improvement] Optimize the display position of option page fields (#300)
---
paimon-web-ui/src/views/metadata/components/options/index.tsx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/paimon-web-ui/src/views/metadata/components/options/index.tsx
b/paimon-web-ui/src/views/metadata/components/options/index.tsx
index 9f0ee567..7fb32b38 100644
--- a/paimon-web-ui/src/views/metadata/components/options/index.tsx
+++ b/paimon-web-ui/src/views/metadata/components/options/index.tsx
@@ -43,9 +43,10 @@ export default defineComponent({
{
title: 'Operation',
key: 'operation',
+ align: 'right',
render(rowData) {
return (
- <n-space>
+ <n-space justify="end">
<OptionsEditForm onConfirm={onFetchData} option={rowData} />
<n-popconfirm onPositiveClick={() =>
onDeleteOption(rowData?.key)}>
{{