Skip to content

Commit

Permalink
fix system admin search repo (#7461)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael18811380328 authored Feb 14, 2025
1 parent 1ac807e commit 508e77d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/sys-admin/repos/repos.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Content extends Component {
<a className="d-inline-block table-sort-op" href="#" onClick={this.sortByFileCount}>{gettext('Files')} {sortBy == 'file_count' ? sortIcon : initialSortIcon}</a>{' / '}
<a className="d-inline-block table-sort-op" href="#" onClick={this.sortBySize}>{gettext('Size')} {sortBy == 'size' ? sortIcon : initialSortIcon}</a>
</Fragment> :
gettext('Files') / gettext('Size')
<>{gettext('Files')}{' / '}{gettext('Size')}</>
}
</th>
<Fragment>
Expand Down

0 comments on commit 508e77d

Please sign in to comment.