Skip to content

Commit

Permalink
fix~: remove parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
mbondyra committed Feb 22, 2020
1 parent ad5834e commit 47b3d61
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -301,11 +301,11 @@ export class Field extends PureComponent<FieldProps> {
} = setting;
const a11yProps: { [key: string]: string } = unsavedChanges
? {
['aria-label']: ariaName,
['aria-describedby']: id,
'aria-label': ariaName,
'aria-describedby': id,
}
: {
['aria-label']: ariaName,
'aria-label': ariaName,
};
const currentValue = unsavedChanges
? unsavedChanges.value
Expand Down

0 comments on commit 47b3d61

Please sign in to comment.