mirror of
https://github.com/hexastack/hexabot
synced 2025-01-23 02:47:56 +00:00
fix(frontend): apply props destructuring
This commit is contained in:
parent
6c17ee98b2
commit
d214ea3e48
@ -141,13 +141,13 @@ export const EditContentTypeFieldsDialog = ({
|
|||||||
{t("title.manage_fields")}
|
{t("title.manage_fields")}
|
||||||
</DialogTitle>
|
</DialogTitle>
|
||||||
<form
|
<form
|
||||||
onSubmit={handleSubmit(async (data) => {
|
onSubmit={handleSubmit(async ({ name, fields }) => {
|
||||||
if (!!contentType)
|
if (!!contentType)
|
||||||
await updateContentType({
|
await updateContentType({
|
||||||
id: contentType.id,
|
id: contentType.id,
|
||||||
params: {
|
params: {
|
||||||
fields: data.fields,
|
name,
|
||||||
name: data.name,
|
fields,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
handleClose();
|
handleClose();
|
||||||
|
Loading…
Reference in New Issue
Block a user