Skip to content

Commit

Permalink
Fixed runs page filter bug (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
samejr authored Feb 7, 2025
1 parent 9f843d0 commit 1f1a6b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/webapp/app/components/runs/v3/RunFilters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ function TasksDropdown({
<SelectList>
{filtered.map((item, index) => (
<SelectItem
key={item.slug}
key={`${item.triggerSource}-${item.slug}`}
value={item.slug}
icon={
<TaskTriggerSourceIcon source={item.triggerSource} className="size-4 flex-none" />
Expand Down

0 comments on commit 1f1a6b0

Please sign in to comment.