Skip to content

Commit

Permalink
Add aria-labelledby
Browse files Browse the repository at this point in the history
  • Loading branch information
sevfurneaux committed Nov 11, 2024
1 parent a4d4022 commit bd5d3a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meinberlin/react/livequestions/QuestionForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ export default class QuestionForm extends React.Component {
render () {
return (
<>
<h2>{askQuestionStr}</h2>
<form id="id-comment-form" className="form--base panel--heavy" action="" onSubmit={this.addQuestion.bind(this)}>
<h2 id="form-heading">{askQuestionStr}</h2>
<form id="id-comment-form" className="form--base panel--heavy" action="" onSubmit={this.addQuestion.bind(this)} aria-labelledby="form-heading">
<div className="form-group">
{Object.keys(this.props.category_dict).length > 0
? <CategorySelect
Expand Down

0 comments on commit bd5d3a2

Please sign in to comment.