This is an automated email from the ASF dual-hosted git repository.
lynwee pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new c84f5ef92 fix(configui): tagsLimit should be a number (#6261)
c84f5ef92 is described below
commit c84f5ef920abff64d24e6f1ac38f9bc85bc7842e
Author: Lynwee <[email protected]>
AuthorDate: Tue Oct 17 16:29:21 2023 +0800
fix(configui): tagsLimit should be a number (#6261)
---
.../plugins/components/scope-config-form/fields/additional-settings.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/config-ui/src/plugins/components/scope-config-form/fields/additional-settings.tsx
b/config-ui/src/plugins/components/scope-config-form/fields/additional-settings.tsx
index 61a7615da..79d831f39 100644
---
a/config-ui/src/plugins/components/scope-config-form/fields/additional-settings.tsx
+++
b/config-ui/src/plugins/components/scope-config-form/fields/additional-settings.tsx
@@ -69,7 +69,7 @@ export const AdditionalSettings = ({ transformation,
setTransformation }: Props)
...transformation,
refdiff: {
...transformation?.refdiff,
- tagsLimit: e.target.value,
+ tagsLimit: +e.target.value,
},
})
}