Skip to content

Commit

Permalink
Add missing type param for selecting bucket field in detections table
Browse files Browse the repository at this point in the history
  • Loading branch information
skanderm committed Sep 9, 2024
1 parent 9d7b2d5 commit b0c7c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/DetectionsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function DetectionsTable({
onDetectionUpdate,
}: {
detections: Detection[];
feed: Pick<Feed, "slug" | "nodeName">;
feed: Pick<Feed, "slug" | "nodeName" | "bucket">;
candidate: Pick<Candidate, "id" | "visible">;
onDetectionUpdate: () => void;
}) {
Expand Down

0 comments on commit b0c7c65

Please sign in to comment.