Skip to content

Commit

Permalink
fix: 优化容器创建提示信息 (#6925)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssongliu authored Nov 1, 2024
1 parent 24c063b commit f7b4c8c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/views/container/container/operate/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,11 @@ const onSubmit = async (formEl: FormInstance | undefined) => {
if (!formEl) return;
formEl.validate(async (valid) => {
if (!valid) return;
dialogVisible.value = true;
if (dialogData.value.title === 'create') {
submit();
} else {
dialogVisible.value = true;

This comment has been minimized.

Copy link
@Hacker11144

Hacker11144 Nov 3, 2024

411Value

This comment has been minimized.

Copy link
@wanghe-fit2cloud

wanghe-fit2cloud Nov 3, 2024

Member

麻烦讲一下具体是什么意思?

}
});
};
Expand Down

0 comments on commit f7b4c8c

Please sign in to comment.