Skip to content

Commit

Permalink
Fix text box label ID
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-schu committed Oct 2, 2024
1 parent 0a895e7 commit 4bd588c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/workflows/workflow/common/PermissionsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,12 @@ export const PermissionsModal = (props: WorkflowPermissionsModalProps) => {
<IdContainer>
{(id) => (
<div style={{ flexGrow: 1, marginRight: '1rem' }}>
<FormLabel id={id} style={{ ...Style.elements.sectionHeader, margin: '1rem 0 0.5rem 0' }}>
<FormLabel htmlFor={id} style={{ ...Style.elements.sectionHeader, margin: '1rem 0 0.5rem 0' }}>
User
</FormLabel>
<ValidatedInput
inputProps={{
id,
autoFocus: true,
placeholder: 'Add a user',
value: searchValue,
Expand Down

0 comments on commit 4bd588c

Please sign in to comment.