Merge branch 'feature_repo_second_page' of https://git.trustie.net/Gitlink/forgeplus-react into feature_repo_second_page_xiesi

This commit is contained in:
谢思 2021-10-08 18:13:54 +08:00
commit 5195f22f00
2 changed files with 3 additions and 2 deletions

View File

@ -19,7 +19,7 @@ function Footer(){
return(
<div>
<div style={{height:"497px"}}></div>
<div style={{height:"543px"}}></div>
<div className="newFooter edu-txt-center">
{value && showhtml(value)}
{/* <div className="footerInfos">

View File

@ -52,7 +52,6 @@ class m_editor extends Component {
const handleEditorMount = (editor, monaco) => {
editor.onDidChangeModelDecorations(() => {
updateEditorHeight(); // typing
requestAnimationFrame(updateEditorHeight); // folding
});
@ -84,6 +83,8 @@ class m_editor extends Component {
editor.layout();
}
};
updateEditorHeight(); // typing
};