Browse Source

fix: Fix dropdown frozen issue (#5)

* fix: Align the frontend code with Casibase(#4)

* fix: webpage support cors

* fix: failed to parse source map: 'xxx' URL is not supported

* fix: correct primary color

* Update craco.config.js

* Update App.js

* Update Setting.js

* Update App.js

---------

Co-authored-by: hsluoyz <hsluoyz@qq.com>
master
Yang Luo 2 years ago
parent
commit
d2eff3e4d6
2 changed files with 8 additions and 1 deletions
  1. +7
    -0
      web/src/App.js
  2. +1
    -1
      web/src/index.js

+ 7
- 0
web/src/App.js View File

@@ -189,6 +189,13 @@ class App extends Component {
);
} else {
res.push(this.renderRightDropdown());
return (
<div style={{float: 'right', margin: '0px', padding: '0px'}}>
{
res
}
</div>
)
}

return res;


+ 1
- 1
web/src/index.js View File

@@ -11,7 +11,7 @@ import './index.css';
import './font.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
import 'antd/dist/antd.css';
// import 'antd/dist/antd.min.css';
import {BrowserRouter} from 'react-router-dom';
import './i18n';



Loading…
Cancel
Save