Commit 2b31e8a2 by zhanghaozhe

Merge branch '2020-717-formal' into dev

parents d85d0a85 8be0d208
......@@ -517,7 +517,7 @@ class Anniversary2020 extends Component {
if (code === 200) {
this.setState((state, props) => {
return {
bulletScreenList: state.bulletScreenList.concat(data),
bulletScreenList: state.bulletScreenList.concat(Array.isArray(data) ? data : []),
}
});
......
......@@ -1106,6 +1106,8 @@
}
.content {
max-height: 244px;
overflow: auto;
font-size: 14px;
color: #525C65;
white-space: pre-line;
......
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