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

fix grid menu style (#6366)

This commit is contained in:
Michael An
2024-07-18 13:37:12 +08:00
committed by GitHub
parent 67210c7363
commit cf7272c274

View File

@@ -32,6 +32,7 @@ const propTypes = {
onFileTagChanged: PropTypes.func, onFileTagChanged: PropTypes.func,
onItemRename: PropTypes.func.isRequired, onItemRename: PropTypes.func.isRequired,
fullDirentList: PropTypes.array, fullDirentList: PropTypes.array,
getMenuContainerSize: PropTypes.func,
}; };
class DirGridView extends React.Component { class DirGridView extends React.Component {
@@ -83,6 +84,7 @@ class DirGridView extends React.Component {
onAddFolder={this.props.onAddFolder} onAddFolder={this.props.onAddFolder}
repoTags={this.props.repoTags} repoTags={this.props.repoTags}
onFileTagChanged={this.props.onFileTagChanged} onFileTagChanged={this.props.onFileTagChanged}
getMenuContainerSize={this.props.getMenuContainerSize}
/> />
</Fragment> </Fragment>
); );