Skip to content

Commit

Permalink
fix(UI): fixed typos
Browse files Browse the repository at this point in the history
- FAQ titles were not HTML
- release date for 2.0 was wrong
  • Loading branch information
valearna committed Sep 15, 2020
1 parent 65b728c commit ac24ef4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/frontend/feedback_form/src/components/FAQsingle.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class FAQsingle extends React.Component {
render(){
return (
<div>
<a onClick={() => this.setState({ open: !this.state.open })}>{this.props.question}</a>
<a onClick={() => this.setState({ open: !this.state.open })}><p dangerouslySetInnerHTML={{__html: this.props.question}}/></a>
<Collapse in={this.state.open}>
<div>
<Well>
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/feedback_form/src/widgets/ReleaseNotes.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class ReleaseNotes extends React.Component {
return (
<div>
<h3>Release 2.0</h3>
Release date: 09-07-2020
Release date: 09-14-2020
<h4>Introduction</h4>
<p>We improved the AFP system based on feedback received from authors and statistics
collected during one year of AFP v1.0 author submissions. We improved the definition of
Expand Down

0 comments on commit ac24ef4

Please sign in to comment.