aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-04-05 07:30:59 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-04-05 07:30:59 +0200
commit45af6c6d9d23a1282b75f80d26420ecc2547bc53 (patch)
treed5b2fe5157bb43b241e2cdb8ea1d3dd493644c07 /src
parentUpdated signup form. (diff)
downloadnewspipe-45af6c6d9d23a1282b75f80d26420ecc2547bc53.tar.gz
newspipe-45af6c6d9d23a1282b75f80d26420ecc2547bc53.tar.bz2
newspipe-45af6c6d9d23a1282b75f80d26420ecc2547bc53.zip
Fixed table from the dashboard.
Diffstat (limited to 'src')
-rw-r--r--src/web/templates/admin/dashboard.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/web/templates/admin/dashboard.html b/src/web/templates/admin/dashboard.html
index a710e1be..7728f586 100644
--- a/src/web/templates/admin/dashboard.html
+++ b/src/web/templates/admin/dashboard.html
@@ -67,8 +67,12 @@ $(document).ready(function() {
responsive: true,
columnDefs: [
{
- bSortable: false,
- targets: [0, 5]
+ targets: [0, 4],
+ "searchable": false
+ },
+ {
+ targets: [3],
+ "orderSequence": ["desc"]
}
]
});
bgstack15