|
|
|
@ -59,7 +59,7 @@ const EnvConfigModal: React.FC<EnvConfigModalProps> = ({
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleConfigChange = (index: number, field: keyof ConfigItem, value: string) => {
|
|
|
|
const handleConfigChange = (index: number, field: keyof ConfigItem, value: string) => {
|
|
|
|
const newConfigList = [...configList];
|
|
|
|
const newConfigList:any = [...configList];
|
|
|
|
newConfigList[index][field] = value;
|
|
|
|
newConfigList[index][field] = value;
|
|
|
|
setConfigList(newConfigList);
|
|
|
|
setConfigList(newConfigList);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|