1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 15:38:15 +00:00

Add hu berlin requirement (#4500)

* add new requirement

* update demo copyright

* update sf-font

* optimize code

* improve variables naming
This commit is contained in:
杨顺强
2020-03-25 18:03:04 +08:00
committed by GitHub
parent c97e901a73
commit 011cb33fbb
16 changed files with 200 additions and 55 deletions

View File

@@ -1,9 +1,10 @@
import React from 'react';
import PropTypes from 'prop-types';
import { isPro, gettext } from '../../utils/constants';
import { isPro, gettext, showExtraLogoutIcon } from '../../utils/constants';
import Search from '../search/search';
import Notification from '../common/notification';
import Account from '../common/account';
import Logout from '../common/logout';
const propTypes = {
repoID: PropTypes.string,
@@ -25,6 +26,7 @@ class CommonToolbar extends React.Component {
)}
<Notification />
<Account />
{showExtraLogoutIcon && (<Logout />)}
</div>
);
}