mirror of
https://github.com/openstf/stf
synced 2025-10-04 18:29:17 +02:00
File Explorer order files alphabetically. Add file timestamp.
This commit is contained in:
parent
2f3de3f516
commit
c17dede8c0
1 changed files with 4 additions and 3 deletions
|
@ -28,7 +28,7 @@
|
|||
th
|
||||
div(translate) Permissions
|
||||
tbody
|
||||
tr.header(ng-repeat='f in files | filter:search | orderBy: "-mode|isdir"')
|
||||
tr.header(ng-repeat='f in files | filter:search | orderBy: ["-mode|isdir", "+name"]')
|
||||
td
|
||||
button.btn.btn-sm.btn-primary-outline(
|
||||
ng-click='dirEnter(f.name)', ng-show='f.mode|isdir')
|
||||
|
@ -43,7 +43,8 @@
|
|||
span {{f.name}}
|
||||
td
|
||||
span(ng-show='f.mode|isdir') -
|
||||
span(ng-hide='f.mode|isdir') {{ f.size }}
|
||||
td Date
|
||||
span(ng-hide='f.mode|isdir') {{f.size}}
|
||||
td
|
||||
span {{f.mtime}}
|
||||
td
|
||||
i {{f.mode|mode2unix}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue