diff --git a/src/view/form/control/AphrontFormTextAreaControl.php b/src/view/form/control/AphrontFormTextAreaControl.php index e548916fbb..d83edeb0d1 100644 --- a/src/view/form/control/AphrontFormTextAreaControl.php +++ b/src/view/form/control/AphrontFormTextAreaControl.php @@ -84,6 +84,7 @@ class AphrontFormTextAreaControl extends AphrontFormControl { 'textarea', array( 'name' => $this->getName(), + 'aria-label' => $this->getName(), 'disabled' => $this->getDisabled() ? 'disabled' : null, 'readonly' => $this->getReadOnly() ? 'readonly' : null, 'class' => $classes,