Merge pull request '代码库二级页面issue滚动条更改' (#115) from hc1913847458/forgeplus-react:feature_repo_second_page into feature_repo_second_page

This commit is contained in:
jasder 2021-10-08 17:17:38 +08:00
commit 58287f488f
2 changed files with 3 additions and 2 deletions

View File

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

View File

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