Skip to content

Commit ac24ef4

Browse files
committed
fix(UI): fixed typos
- FAQ titles were not HTML - release date for 2.0 was wrong
1 parent 65b728c commit ac24ef4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/frontend/feedback_form/src/components/FAQsingle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class FAQsingle extends React.Component {
1414
render(){
1515
return (
1616
<div>
17-
<a onClick={() => this.setState({ open: !this.state.open })}>{this.props.question}</a>
17+
<a onClick={() => this.setState({ open: !this.state.open })}><p dangerouslySetInnerHTML={{__html: this.props.question}}/></a>
1818
<Collapse in={this.state.open}>
1919
<div>
2020
<Well>

src/frontend/feedback_form/src/widgets/ReleaseNotes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class ReleaseNotes extends React.Component {
55
return (
66
<div>
77
<h3>Release 2.0</h3>
8-
Release date: 09-07-2020
8+
Release date: 09-14-2020
99
<h4>Introduction</h4>
1010
<p>We improved the AFP system based on feedback received from authors and statistics
1111
collected during one year of AFP v1.0 author submissions. We improved the definition of

0 commit comments

Comments
 (0)