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

fix: metadata count translate (#6567)

* fix: metadata count translate

* feat: optimzie code

---------

Co-authored-by: 杨国璇 <ygx@Hello-word.local>
This commit is contained in:
杨国璇
2024-08-16 10:57:22 +08:00
committed by GitHub
parent 6d0680f4b4
commit 7543f195f3
7 changed files with 7 additions and 7 deletions

View File

@@ -68,7 +68,7 @@ class Content extends Component {
<a className="d-inline-block table-sort-op" href="#" onClick={this.sortByTime}>{gettext('Created At')} {sortBy == 'ctime' ? sortIcon : initialSortIcon}</a>
</th>
<th width="10%">
<a className="d-inline-block table-sort-op" href="#" onClick={this.sortByCount}>{gettext('Count')} {sortBy == 'view_cnt' ? sortIcon : initialSortIcon}</a>
<a className="d-inline-block table-sort-op" href="#" onClick={this.sortByCount}>{gettext('Visit count')} {sortBy == 'view_cnt' ? sortIcon : initialSortIcon}</a>
</th>
<th width="11%">{gettext('Expiration')}</th>
<th width="10%">{/* Operations*/}</th>

View File

@@ -48,7 +48,7 @@ class Content extends Component {
<th width="18%">{gettext('Token')}</th>
<th width="18%">{gettext('Owner')}</th>
<th width="15%">{gettext('Created At')}</th>
<th width="10%">{gettext('Count')}</th>
<th width="10%">{gettext('Visit count')}</th>
<th width="11%">{gettext('Expiration')}</th>
<th width="10%">{/* Operations*/}</th>
</tr>