refactor: add initialization parameters to function library update
This commit is contained in:
parent
812dc142c8
commit
0e98c7783b
@ -431,8 +431,14 @@ async function changeState(bool: Boolean, row: any) {
|
|||||||
row.is_active = false
|
row.is_active = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
const init_params = res.data.init_field_list.reduce((acc: any, item: any) => {
|
||||||
|
acc[item.field] = item.default_value
|
||||||
|
return acc
|
||||||
|
}, {})
|
||||||
const obj = {
|
const obj = {
|
||||||
is_active: bool
|
is_active: bool,
|
||||||
|
init_params: init_params,
|
||||||
|
init_field_list: res.data.init_field_list
|
||||||
}
|
}
|
||||||
functionLibApi.putFunctionLib(row.id, obj, changeStateloading).then((res) => {})
|
functionLibApi.putFunctionLib(row.id, obj, changeStateloading).then((res) => {})
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user