1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-06 01:12:03 +00:00

fix file suffixes

This commit is contained in:
Michael An
2019-04-23 22:51:20 +08:00
parent 0897a3e1b7
commit e3d3b242b8
6 changed files with 17 additions and 17 deletions

View File

@@ -12,7 +12,7 @@ const propTypes = {
selectedPath: PropTypes.string,
onDirentItemClick: PropTypes.func.isRequired,
onRepoItemClick: PropTypes.func.isRequired,
fileSuffix: PropTypes.array,
fileSuffixes: PropTypes.array,
};
class RepoListView extends React.Component {
@@ -36,7 +36,7 @@ class RepoListView extends React.Component {
onRepoItemClick={this.props.onRepoItemClick}
onDirentItemClick={this.props.onDirentItemClick}
isShowFile={this.props.isShowFile}
fileSuffix={this.props.fileSuffix}
fileSuffixes={this.props.fileSuffixes}
/>
);
})}