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

[dir view, file view] removed 'participant list' & 'add participant' for 'info panel' & 'comment panel' (#5515)

This commit is contained in:
llj
2023-06-20 15:38:55 +08:00
committed by GitHub
parent 967096b234
commit dd7dc6b368
10 changed files with 5 additions and 391 deletions

View File

@@ -7,7 +7,6 @@ import { gettext, username, siteRoot } from '../../utils/constants';
import { seafileAPI } from '../../utils/seafile-api';
import { Utils } from '../../utils/utils';
import toaster from '../toast';
import ParticipantsList from '../file-view/participants-list';
import { MentionsInput, Mention } from 'react-mentions';
import { defaultStyle, defaultMentionStyle } from '../../css/react-mentions-default-style';
import '../../css/comments-list.css';
@@ -137,7 +136,7 @@ class DetailCommentList extends React.Component {
}
render() {
const { repoID, filePath, fileParticipantList } = this.props;
const { repoID, filePath } = this.props;
const { commentsList } = this.state;
return (
<div className="seafile-comment detail-comments h-100">
@@ -164,15 +163,6 @@ class DetailCommentList extends React.Component {
}
</div>
<div className="seafile-comment-footer flex-shrink-0">
{fileParticipantList &&
<ParticipantsList
onParticipantsChange={this.props.onParticipantsChange}
participants={fileParticipantList}
repoID={repoID}
filePath={filePath}
showIconTip={true}
/>
}
<MentionsInput
value={this.state.comment}
onChange={this.handleCommentChange}