Skip to content

Commit 61c166b

Browse files
checkbox/radio fix
1 parent 606a9d1 commit 61c166b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

client/packages/lowcoder/src/comps/comps/selectInputComp/segmentedControl.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ const SegmentedControlBasicComp = (function () {
7979
return new UICompBuilder(SegmentChildrenMap, (props) => {
8080
const [
8181
validateState,
82-
handleValidate,
8382
handleChange,
8483
] = useSelectInputValidate(props);
8584
return props.label({

client/packages/lowcoder/src/comps/comps/selectInputComp/selectInputConstants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export const useSelectInputValidate = (props: ValidationParams) => {
9191

9292
return [
9393
validateState,
94-
handleValidate,
94+
// handleValidate,
9595
handleChange,
9696
] as const;
9797
};

0 commit comments

Comments
 (0)