Skip to content

Commit

Permalink
The value for selects in the pr automation config was incorrect (#1095)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino authored Jun 20, 2024
1 parent 84fd3bd commit b1274a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/src/components/pr/automations/PrConfigurationInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ export function PrConfigurationInput({
selectedKey={value}
onSelectionChange={(key) => setValue(key as string)}
>
{(config?.values || [])?.map((val, index) => (
{(config?.values || [])?.map((val) => (
<ListBoxItem
key={`${index}`}
key={`${val}`}
label={val}
textValue={val ?? ''}
/>
Expand Down

0 comments on commit b1274a9

Please sign in to comment.