Skip to content

Commit 3501ec0

Browse files
committed
fix(webapp): allow filtering webhook deliveries by the Filtered status
The deliveries status filter now includes Filtered, so deliveries that were received and verified but intentionally not routed can be filtered for in the dashboard.
1 parent ce70c40 commit 3501ec0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

apps/webapp/app/components/webhookDeliveries/v1/WebhookDeliveryFilters.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ const deliveryStatuses: { value: WebhookDeliveryStatus; title: string; color: st
3535
{ value: "PROCESSING", title: "Processing", color: "#3B82F6" },
3636
{ value: "SUCCEEDED", title: "Succeeded", color: "#28BF5C" },
3737
{ value: "FAILED", title: "Failed", color: "#E11D48" },
38+
{ value: "FILTERED", title: "Filtered", color: "#64748B" },
3839
];
3940

4041
const statusTitleByValue = new Map(deliveryStatuses.map((s) => [s.value, s.title]));

0 commit comments

Comments
 (0)