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:
@@ -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>
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user