Skip to content

Commit

Permalink
Simplest possible customization of placeholder text
Browse files Browse the repository at this point in the history
  • Loading branch information
charliepark committed Sep 20, 2024
1 parent 26dab1b commit 6f4a1bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/forms/vpc-router-route-common.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const RouteFormFields = ({ form, isDisabled }: RouteFormFieldsProps) => {
label="Destination value"
control={control}
items={vpcSubnets.map(({ name }) => ({ value: name, label: name }))}
placeholder="Select a destination value"
placeholder="Select a subnet"
required
isDisabled={isDisabled}
/>
Expand Down Expand Up @@ -133,7 +133,7 @@ export const RouteFormFields = ({ form, isDisabled }: RouteFormFieldsProps) => {
label="Target value"
control={control}
items={instances.map(({ name }) => ({ value: name, label: name }))}
placeholder="Select a target value"
placeholder="Select an instance"
required
isDisabled={isDisabled}
/>
Expand Down

0 comments on commit 6f4a1bf

Please sign in to comment.