1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-06 17:33:18 +00:00

delete useless codes (#6218)

* delete useless codes

* remove useless codes
This commit is contained in:
Michael An
2024-06-17 22:17:47 +08:00
committed by GitHub
parent bb6a81e84a
commit 3c01601ac9
30 changed files with 125 additions and 1142 deletions

View File

@@ -1,4 +1,4 @@
import React, { Fragment } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import { Utils } from '../../utils/utils';
import SortOptionsDialog from '../../components/dialog/sort-options';
@@ -57,7 +57,7 @@ class CurDirPath extends React.Component {
render() {
const isDesktop = Utils.isDesktop();
return (
<Fragment>
<div className="cur-dir-path d-flex justify-content-between align-items-center">
<DirPath
repoID={this.props.repoID}
repoName={this.props.repoName}
@@ -104,7 +104,7 @@ class CurDirPath extends React.Component {
sortItems={this.props.sortItems}
/>
}
</Fragment>
</div>
);
}
}