mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: points not updating while editing estimate (#935)
This commit is contained in:
parent
169a60723b
commit
8eddc4b304
@ -184,32 +184,65 @@ export const CreateUpdateEstimateModal: React.FC<Props> = ({ handleClose, data,
|
|||||||
name: formData.name,
|
name: formData.name,
|
||||||
description: formData.description,
|
description: formData.description,
|
||||||
},
|
},
|
||||||
estimate_points: [
|
estimate_points: data
|
||||||
{
|
? [
|
||||||
key: 0,
|
{
|
||||||
value: formData.value1,
|
id: data.points[0].id,
|
||||||
},
|
key: 0,
|
||||||
{
|
value: formData.value1,
|
||||||
key: 1,
|
},
|
||||||
value: formData.value2,
|
{
|
||||||
},
|
id: data.points[1].id,
|
||||||
{
|
key: 1,
|
||||||
key: 2,
|
value: formData.value2,
|
||||||
value: formData.value3,
|
},
|
||||||
},
|
{
|
||||||
{
|
id: data.points[2].id,
|
||||||
key: 3,
|
key: 2,
|
||||||
value: formData.value4,
|
value: formData.value3,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 4,
|
id: data.points[3].id,
|
||||||
value: formData.value5,
|
key: 3,
|
||||||
},
|
value: formData.value4,
|
||||||
{
|
},
|
||||||
key: 5,
|
{
|
||||||
value: formData.value6,
|
id: data.points[4].id,
|
||||||
},
|
key: 4,
|
||||||
],
|
value: formData.value5,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: data.points[5].id,
|
||||||
|
key: 5,
|
||||||
|
value: formData.value6,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
: [
|
||||||
|
{
|
||||||
|
key: 0,
|
||||||
|
value: formData.value1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 1,
|
||||||
|
value: formData.value2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 2,
|
||||||
|
value: formData.value3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 3,
|
||||||
|
value: formData.value4,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 4,
|
||||||
|
value: formData.value5,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 5,
|
||||||
|
value: formData.value6,
|
||||||
|
},
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
if (data) await updateEstimate(payload);
|
if (data) await updateEstimate(payload);
|
||||||
|
1
apps/app/types/estimate.d.ts
vendored
1
apps/app/types/estimate.d.ts
vendored
@ -31,6 +31,7 @@ export interface IEstimateFormData {
|
|||||||
description: string;
|
description: string;
|
||||||
};
|
};
|
||||||
estimate_points: {
|
estimate_points: {
|
||||||
|
id?: string;
|
||||||
key: number;
|
key: number;
|
||||||
value: string;
|
value: string;
|
||||||
}[];
|
}[];
|
||||||
|
Loading…
Reference in New Issue
Block a user