Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion paas/frontend/app/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ app.router(router)
}
try {
const isLogined = await AppService.isLogined()
if (isLogined && islogined['name']) {
if (isLogined && isLogined['name']) {
const res = await AppService.getAllProfile(params)
let { collectList = [], customQuickList = [], workspaces } = res.profile
app.start('#root')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class SRESearch extends Component {
}
handleClickOutside = (evt) => {
const { hotKeyWordsVisible } = this.state
const area = ReactDOM.findDomNode(this.currentRef.current)
const area = ReactDOM.findDOMNode(this.currentRef.current)
if (!area.contains(evt.target) && hotKeyWordsVisible) {
this.navType = ''
this.setState({
Expand Down