change capture
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { useParams, Link } from "react-router-dom";
|
||||
import { useEvent } from "@/hooks/useEvents";
|
||||
import EntityHistoryPanel from "@/components/common/EntityHistoryPanel";
|
||||
|
||||
export default function EventDetailPage() {
|
||||
const { id } = useParams<{ id: string }>();
|
||||
@@ -258,6 +259,15 @@ export default function EventDetailPage() {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Change History */}
|
||||
<div className="mt-6">
|
||||
<EntityHistoryPanel
|
||||
entityType="event"
|
||||
entityId={event.id}
|
||||
title="Event History"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user