feat: Implement item editing capability

This commit is contained in:
gpt-engineer-app[bot]
2025-09-30 14:06:03 +00:00
parent 9fcf1f5413
commit dc3c210e40
4 changed files with 336 additions and 1 deletions

View File

@@ -141,6 +141,11 @@ export function ItemReviewCard({ item, onEdit, onStatusChange }: ItemReviewCardP
<Edit className="w-3 h-3" />
</Button>
)}
{item.original_data && (
<Badge variant="secondary" className="text-xs">
Edited
</Badge>
)}
</div>
</div>
</CardHeader>