From 47b3d619021b00b82e2edf075b254d8a2f78e808 Mon Sep 17 00:00:00 2001 From: Marta Bondyra Date: Sat, 22 Feb 2020 18:25:25 +0100 Subject: [PATCH] fix~: remove parenthesis --- .../public/management_app/components/field/field.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/advanced_settings/public/management_app/components/field/field.tsx b/src/plugins/advanced_settings/public/management_app/components/field/field.tsx index 303cb0814806c..d9c3752d1c0a5 100644 --- a/src/plugins/advanced_settings/public/management_app/components/field/field.tsx +++ b/src/plugins/advanced_settings/public/management_app/components/field/field.tsx @@ -301,11 +301,11 @@ export class Field extends PureComponent { } = 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