fix: miss cluster id in evaluation

This commit is contained in:
jialin
2025-10-24 17:55:54 +08:00
parent ba80ade643
commit 7e81871118
6 changed files with 32 additions and 48 deletions
@@ -34,12 +34,8 @@ const LocalPathForm: React.FC = () => {
}
const handleOnBlur = (e: any) => {
form.setFieldsValue({
backend_parameters: [],
backend_version: '',
backend: '',
env: {}
});
const value = e.target.value;
onValuesChange?.({ local_path: value }, form.getFieldsValue());
};
const handleLocalPathBlur = async (e: any) => {
@@ -99,6 +95,7 @@ const LocalPathForm: React.FC = () => {
allowClear
required
onFocus={handleOnFocus}
onBlur={handleOnBlur}
label={intl.formatMessage({ id: 'models.form.filePath' })}
description={<TooltipList list={localPathTipsList}></TooltipList>}
></SealInput.Input>