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 516abbe1 [Bugfix] Fix create character modal box name (#423)
516abbe1 is described below
commit 516abbe12e779f2c7269680e31d59a1337af8bd9
Author: s7monk <[email protected]>
AuthorDate: Tue Jun 18 17:52:41 2024 +0800
[Bugfix] Fix create character modal box name (#423)
---
paimon-web-ui/src/views/system/role/index.tsx | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/paimon-web-ui/src/views/system/role/index.tsx
b/paimon-web-ui/src/views/system/role/index.tsx
index 9b4e19f7..b502d519 100644
--- a/paimon-web-ui/src/views/system/role/index.tsx
+++ b/paimon-web-ui/src/views/system/role/index.tsx
@@ -165,6 +165,7 @@ export default defineComponent({
rowKey,
onConfirm,
handleCreateModal,
+ formType,
}
},
render() {
@@ -190,7 +191,13 @@ export default defineComponent({
/>
</n-space>
</n-card>
- <RoleForm modelLoading={this.modelLoading}
v-model:visible={this.formVisible} v-model:formValue={this.formValue}
onConfirm={this.onConfirm} />
+ <RoleForm
+ modelLoading={this.modelLoading}
+ v-model:visible={this.formVisible}
+ v-model:formValue={this.formValue}
+ onConfirm={this.onConfirm}
+ formType={this.formType}
+ />
</n-space>
)
},