fix: sglang enable across worker

This commit is contained in:
jialin
2025-11-20 15:59:05 +08:00
parent ebff5695ff
commit ea39a45f31
7 changed files with 9 additions and 8 deletions
+2 -1
View File
@@ -20,7 +20,8 @@ const BackendFields: React.FC = () => {
const { onValuesChange, backendOptions, onBackendChange } = useFormContext();
const backend = Form.useWatch('backend', form);
const handleBackendVersionOnChange = () => {
const handleBackendVersionOnChange = (value: any) => {
console.log('value changed:', value);
onValuesChange?.({}, form.getFieldsValue());
};