File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
web/core/components/issues/issue-detail/issue-activity/activity Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -482,7 +482,7 @@ def track_estimate_points(
482482 ),
483483 old_value = old_estimate .value if old_estimate else None ,
484484 new_value = new_estimate .value if new_estimate else None ,
485- field = "estimate_point" ,
485+ field = "estimate_" + new_estimate . estimate . type ,
486486 project_id = project_id ,
487487 workspace_id = workspace_id ,
488488 comment = "updated the estimate point to " ,
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export const IssueActivityItem: FC<TIssueActivityItem> = observer((props) => {
3939 // hooks
4040 const {
4141 activity : { getActivityById } ,
42- comment : { } ,
42+ comment : { } ,
4343 } = useIssueDetail ( ) ;
4444 const ISSUE_RELATION_OPTIONS = useTimeLineRelationOptions ( ) ;
4545 const activityRelations = getValidKeysFromObject ( ISSUE_RELATION_OPTIONS ) ;
@@ -60,7 +60,7 @@ export const IssueActivityItem: FC<TIssueActivityItem> = observer((props) => {
6060 return < IssueAssigneeActivity { ...componentDefaultProps } showIssue = { false } /> ;
6161 case "priority" :
6262 return < IssuePriorityActivity { ...componentDefaultProps } showIssue = { false } /> ;
63- case "estimate_point " :
63+ case "estimate_points " :
6464 case "estimate_categories" :
6565 return < IssueEstimateActivity { ...componentDefaultProps } showIssue = { false } /> ;
6666 case "parent" :
You can’t perform that action at this time.
0 commit comments