Commit 334ffdf6 by zhanghaozhe

Merge branch '2020-717-formal'

parents 758f96ba e45342d2
...@@ -517,7 +517,7 @@ class Anniversary2020 extends Component { ...@@ -517,7 +517,7 @@ class Anniversary2020 extends Component {
if (code === 200) { if (code === 200) {
this.setState((state, props) => { this.setState((state, props) => {
return { return {
bulletScreenList: state.bulletScreenList.concat(data), bulletScreenList: state.bulletScreenList.concat(Array.isArray(data) ? data : []),
} }
}); });
...@@ -1059,7 +1059,7 @@ class Anniversary2020 extends Component { ...@@ -1059,7 +1059,7 @@ class Anniversary2020 extends Component {
}) })
} }
{ {
auditions.length > 4 && auditions.length === 4 &&
<li> <li>
<button className={'show-more'} onClick={() => { <button className={'show-more'} onClick={() => {
this.setState({ this.setState({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment