aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-04-05 21:34:19 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-04-05 21:34:19 +0200
commita309f6c8e16191341fd090550cad01f47346d45b (patch)
tree91e6c9d4cd02ea2acc664caba1e97a60ec70c052
parentUpdated install script. (diff)
parentFixed table from the dashboard. (diff)
downloadnewspipe-a309f6c8e16191341fd090550cad01f47346d45b.tar.gz
newspipe-a309f6c8e16191341fd090550cad01f47346d45b.tar.bz2
newspipe-a309f6c8e16191341fd090550cad01f47346d45b.zip
aMerge branch 'master' of github.com:newspipe/newspipe
-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