This is an automated email from the ASF dual-hosted git repository.
liudongkai pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 257380467e [Fix][UI Next][V1.0.0-Beta] Set the timout label to not
show. (#9710)
257380467e is described below
commit 257380467e42100589d8d0533633eafec42dc4fd
Author: Amy0104 <[email protected]>
AuthorDate: Sun Apr 24 17:56:10 2022 +0800
[Fix][UI Next][V1.0.0-Beta] Set the timout label to not show. (#9710)
---
.../src/views/projects/workflow/components/dag/dag-save-modal.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx
b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx
index beafcc4d49..8379da16fe 100644
---
a/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx
+++
b/dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/dag-save-modal.tsx
@@ -209,7 +209,7 @@ export default defineComponent({
<NSwitch v-model:value={formValue.value.timeoutFlag} />
</NFormItem>
{formValue.value.timeoutFlag && (
- <NFormItem label=' ' path='timeout'>
+ <NFormItem showLabel={false} path='timeout'>
<NInputNumber
v-model:value={formValue.value.timeout}
show-button={false}
@@ -255,14 +255,14 @@ export default defineComponent({
/>
</NFormItem>
{props.definition && !props.instance && (
- <NFormItem path='timeoutFlag'>
+ <NFormItem path='timeoutFlag' showLabel={false}>
<NCheckbox v-model:checked={formValue.value.release}>
{t('project.dag.online_directly')}
</NCheckbox>
</NFormItem>
)}
{props.instance && (
- <NFormItem path='sync'>
+ <NFormItem path='sync' showLabel={false}>
<NCheckbox v-model:checked={formValue.value.sync}>
{t('project.dag.update_directly')}
</NCheckbox>