{activity.actor_detail.first_name} {activity.actor_detail.last_name} {" "} {activity.field === "labels" ? activity.new_value !== "" ? "added a new label" : "removed the label" : activity.field === "blocking" ? activity.new_value !== "" ? "marked this issue is blocking" : "removed the issue from blocking" : activity.field === "blocks" ? activity.new_value !== "" ? "marked this issue being blocked by" : "removed blocker" : activity.field === "target_date" ? activity.new_value && activity.new_value !== "" ? "set the due date to" : "removed the due date" : activityDetails[activity.field as keyof typeof activityDetails] ?.message}{" "} {activity.verb === "created" && activity.field !== "cycles" && activity.field !== "modules" ? ( created this issue. ) : activity.field === "description" ? null : activity.field === "state" ? ( activity.new_value ? ( addSpaceIfCamelCase(activity.new_value) ) : ( "None" ) ) : activity.field === "labels" || activity.field === "blocking" || activity.field === "blocks" ? ( activity.new_value !== "" ? ( activity.new_value ) : ( activity.old_value ) ) : activity.field === "assignee" ? ( activity.old_value ) : activity.field === "target_date" ? ( activity.new_value ? ( renderShortNumericDateFormat(activity.new_value as string) ) : null ) : activity.field === "description" ? ( "" ) : ( activity.new_value ?? "None" )} {timeAgo(activity.created_at)}